1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

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,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