Adds autofocus on the email field of the standard login page.

This commit is contained in:
Virgile 2019-08-13 17:30:29 +02:00
parent 4de432b50d
commit 3bcfe2a460
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<div class="form-group">
<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 class="form-group">

View File

@ -1,4 +1,5 @@
<input type="text" id="{{ $name }}" name="{{ $name }}"
@if(isset($focus)) autofocus @endif
@if($errors->has($name)) class="text-neg" @endif
@if(isset($placeholder)) placeholder="{{$placeholder}}" @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($errors->has($name))
<div class="text-neg text-small">{{ $errors->first($name) }}</div>
@endif
@endif