]> BookStack Code Mirror - bookstack/blob - resources/views/auth/passwords/email.blade.php
Merge branch 'master' of https://github.com/BookStackApp/BookStack
[bookstack] / resources / views / auth / passwords / email.blade.php
1 @extends('public')
2
3 @section('header-buttons')
4     <a href="{{ baseUrl("/login") }}"><i class="zmdi zmdi-sign-in"></i>{{ trans('auth.log_in') }}</a>
5     @if(setting('registration-enabled'))
6         <a href="{{ baseUrl("/register") }}"><i class="zmdi zmdi-account-add"></i>{{ trans('auth.sign_up') }}</a>
7     @endif
8 @stop
9
10 @section('content')
11
12
13     <div class="text-center">
14         <div class="center-box text-left">
15             <h1>{{ trans('auth.reset_password') }}</h1>
16
17             <p class="muted small">{{ trans('auth.reset_password_send_instructions') }}</p>
18
19             <form action="{{ baseUrl("/password/email") }}" method="POST">
20                 {!! csrf_field() !!}
21
22                 <div class="form-group">
23                     <label for="email">{{ trans('auth.email') }}</label>
24                     @include('form/text', ['name' => 'email'])
25                 </div>
26
27                 <div class="from-group">
28                     <button class="button block pos">{{ trans('auth.reset_password_send_button') }}</button>
29                 </div>
30             </form>
31         </div>
32     </div>
33
34 @stop