mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
Adds autofocus on the email field of the standard login page.
This commit is contained in:
parent
4de432b50d
commit
3bcfe2a460
@ -1,6 +1,6 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="email">{{ trans('auth.email') }}</label>
|
<label for="email">{{ trans('auth.email') }}</label>
|
||||||
@include('form.text', ['name' => 'email', 'tabindex' => 1])
|
@include('form.text', ['name' => 'email', 'tabindex' => 1, 'focus' => 1])
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<input type="text" id="{{ $name }}" name="{{ $name }}"
|
<input type="text" id="{{ $name }}" name="{{ $name }}"
|
||||||
|
@if(isset($focus)) autofocus @endif
|
||||||
@if($errors->has($name)) class="text-neg" @endif
|
@if($errors->has($name)) class="text-neg" @endif
|
||||||
@if(isset($placeholder)) placeholder="{{$placeholder}}" @endif
|
@if(isset($placeholder)) placeholder="{{$placeholder}}" @endif
|
||||||
@if(isset($disabled) && $disabled) disabled="disabled" @endif
|
@if(isset($disabled) && $disabled) disabled="disabled" @endif
|
||||||
|
Loading…
Reference in New Issue
Block a user