]> BookStack Code Mirror - bookstack/blob - resources/views/auth/password.blade.php
Found the source of the issue, not sure how to fix
[bookstack] / resources / views / auth / password.blade.php
1 @extends('public')
2
3 @section('body-class', 'image-cover login')
4
5 @section('content')
6
7
8     <div class="text-center">
9         <div class="center-box text-left">
10             <h1>Reset Password</h1>
11
12             <p class="muted small">Enter your email below and you will be sent an email with a password reset link.</p>
13
14             <form action="/password/email" method="POST">
15                 {!! csrf_field() !!}
16
17                 <div class="form-group">
18                     <label for="email">Email</label>
19                     @include('form/text', ['name' => 'email'])
20                 </div>
21
22                 <div class="from-group">
23                     <button class="button block pos">Send Reset Link</button>
24                 </div>
25             </form>
26         </div>
27     </div>
28
29 @stop