mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
4b0c4e621a
Also changed up how base URL setting was being done by manipulating incoming request URLs instead of altering then on generation.
13 lines
455 B
PHP
13 lines
455 B
PHP
<div class="form-group">
|
|
<label for="email">{{ trans('auth.email') }}</label>
|
|
@include('form.text', ['name' => 'email', 'tabindex' => 1])
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password">{{ trans('auth.password') }}</label>
|
|
@include('form.password', ['name' => 'password', 'tabindex' => 1])
|
|
<span class="block small mt-s">
|
|
<a href="{{ url('/password/email') }}">{{ trans('auth.forgot_password') }}</a>
|
|
</span>
|
|
</div>
|