]> BookStack Code Mirror - bookstack/blob - resources/views/auth/passwords/email.blade.php
Fixes image deletion failing in subdirectory.
[bookstack] / resources / views / auth / passwords / email.blade.php
1 @extends('public')
2
3 @section('header-buttons')
4     <a href="{{ baseUrl("/login") }}">@icon('login') {{ trans('auth.log_in') }}</a>
5     @if(setting('registration-enabled'))
6         <a href="{{ baseUrl("/register") }}">@icon('new-user') {{ trans('auth.sign_up') }}</a>
7     @endif
8 @stop
9
10 @section('content')
11
12
13     <div class="text-center">
14         <div class="card center-box">
15             <h3>@icon('permission') {{ trans('auth.reset_password') }}</h3>
16
17             <div class="body">
18                 <p class="muted small">{{ trans('auth.reset_password_send_instructions') }}</p>
19
20                 <form action="{{ baseUrl("/password/email") }}" method="POST">
21                     {!! csrf_field() !!}
22
23                     <div class="form-group">
24                         <label for="email">{{ trans('auth.email') }}</label>
25                         @include('form/text', ['name' => 'email'])
26                     </div>
27
28                     <div class="from-group text-right">
29                         <button class="button primary">{{ trans('auth.reset_password_send_button') }}</button>
30                     </div>
31                 </form>
32             </div>
33
34         </div>
35     </div>
36
37 @stop