2016-01-09 14:23:35 -05:00
|
|
|
<div class="form-group">
|
2016-11-13 11:34:28 -05:00
|
|
|
<label for="username">{{ trans('auth.username') }}</label>
|
2019-02-03 12:34:15 -05:00
|
|
|
@include('form.text', ['name' => 'username', 'tabindex' => 1])
|
2016-01-09 14:23:35 -05:00
|
|
|
</div>
|
|
|
|
|
2016-01-13 17:22:30 -05:00
|
|
|
@if(session('request-email', false) === true)
|
|
|
|
<div class="form-group">
|
2016-11-13 11:34:28 -05:00
|
|
|
<label for="email">{{ trans('auth.email') }}</label>
|
2019-02-03 12:34:15 -05:00
|
|
|
@include('form.text', ['name' => 'email', 'tabindex' => 1])
|
2016-01-13 17:22:30 -05:00
|
|
|
<span class="text-neg">
|
2016-11-13 11:34:28 -05:00
|
|
|
{{ trans('auth.ldap_email_hint') }}
|
2016-01-13 17:22:30 -05:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2016-01-09 14:23:35 -05:00
|
|
|
<div class="form-group">
|
2016-11-13 11:34:28 -05:00
|
|
|
<label for="password">{{ trans('auth.password') }}</label>
|
2019-05-07 17:07:50 -04:00
|
|
|
@include('form.password', ['name' => 'password', 'tabindex' => 1])
|
2016-01-09 14:23:35 -05:00
|
|
|
</div>
|