]> BookStack Code Mirror - bookstack/blob - resources/views/auth/passwords/email.blade.php
Update Ldap.php
[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>Sign in</a>
5     @if(setting('registration-enabled'))
6         <a href="{{ baseUrl("/register") }}"><i class="zmdi zmdi-account-add"></i>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>Reset Password</h1>
16
17             <p class="muted small">Enter your email below and you will be sent an email with a password reset link.</p>
18
19             <form action="{{ baseUrl("/password/email") }}" method="POST">
20                 {!! csrf_field() !!}
21
22                 <div class="form-group">
23                     <label for="email">Email</label>
24                     @include('form/text', ['name' => 'email'])
25                 </div>
26
27                 <div class="from-group">
28                     <button class="button block pos">Send Reset Link</button>
29                 </div>
30             </form>
31         </div>
32     </div>
33
34 @stop