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