]> BookStack Code Mirror - bookstack/commitdiff
Adds autofocus on the email field of the standard login page. 1584/head
authorVirgile <redacted>
Tue, 13 Aug 2019 15:30:29 +0000 (17:30 +0200)
committerVirgile <redacted>
Tue, 13 Aug 2019 15:30:29 +0000 (17:30 +0200)
resources/views/auth/forms/login/standard.blade.php
resources/views/form/text.blade.php

index dc6081637f784f9a7823d9443eca91d51a0e7f85..bfe437a8c798af014fb36ee8cc41cffd63d9c58c 100644 (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">
index 909e87286247daaba449ebfc7ae320ba24346660..89e72ddb4b0fd084ec49662c83b1134af654cc45 100644 (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
\ No newline at end of file
+@endif
Morty Proxy This is a proxified and sanitized view of the page, visit original site.