mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-26 22:24:05 +08: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
|
||||||
@ -6,4 +7,4 @@
|
|||||||
@if(isset($model) || old($name)) value="{{ old($name) ? old($name) : $model->$name}}" @endif>
|
@if(isset($model) || old($name)) value="{{ old($name) ? old($name) : $model->$name}}" @endif>
|
||||||
@if($errors->has($name))
|
@if($errors->has($name))
|
||||||
<div class="text-neg text-small">{{ $errors->first($name) }}</div>
|
<div class="text-neg text-small">{{ $errors->first($name) }}</div>
|
||||||
@endif
|
@endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user