]> BookStack Code Mirror - bookstack/blob - resources/views/auth/passwords/reset.blade.php
Updated assets and version for release v0.18.4
[bookstack] / resources / views / auth / passwords / reset.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('body-class', 'image-cover login')
11
12 @section('content')
13
14
15     <div class="text-center">
16         <div class="center-box text-left">
17             <h1>{{ trans('auth.reset_password') }}</h1>
18
19             <form action="{{ baseUrl("/password/reset") }}" method="POST">
20                 {!! csrf_field() !!}
21                 <input type="hidden" name="token" value="{{ $token }}">
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="form-group">
29                     <label for="password">{{ trans('auth.password') }}</label>
30                     @include('form/password', ['name' => 'password'])
31                 </div>
32
33                 <div class="form-group">
34                     <label for="password_confirmation">{{ trans('auth.password_confirm') }}</label>
35                     @include('form/password', ['name' => 'password_confirmation'])
36                 </div>
37
38                 <div class="from-group">
39                     <button class="button block pos">{{ trans('auth.reset_password') }}</button>
40                 </div>
41             </form>
42         </div>
43     </div>
44
45 @stop