]> BookStack Code Mirror - bookstack/blob - resources/views/auth/parts/login-form-ldap.blade.php
Updated attachment links to have dropdown for open type
[bookstack] / resources / views / auth / parts / login-form-ldap.blade.php
1 <form action="{{ url('/login') }}" method="POST" id="login-form" class="mt-l">
2     {!! csrf_field() !!}
3
4     <div class="stretch-inputs">
5         <div class="form-group">
6             <label for="username">{{ trans('auth.username') }}</label>
7             @include('form.text', ['name' => 'username', 'autofocus' => true])
8         </div>
9
10         @if(session('request-email', false) === true)
11             <div class="form-group">
12                 <label for="email">{{ trans('auth.email') }}</label>
13                 @include('form.text', ['name' => 'email'])
14                 <span class="text-neg">{{ trans('auth.ldap_email_hint') }}</span>
15             </div>
16         @endif
17
18         <div class="form-group">
19             <label for="password">{{ trans('auth.password') }}</label>
20             @include('form.password', ['name' => 'password'])
21         </div>
22
23         <div class="form-group text-right pt-s">
24             <button class="button">{{ Str::title(trans('auth.log_in')) }}</button>
25         </div>
26     </div>
27
28 </form>