mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
e0c229114f
- Also extracted "Already have account?" text to translation files.
13 lines
459 B
PHP
13 lines
459 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="{{ baseUrl('/password/email') }}">{{ trans('auth.forgot_password') }}</a>
|
|
</span>
|
|
</div>
|