BookStack/resources/views/auth/passwords/email.blade.php
Dan Brown 9dc9724e15 Laravel 5.3 upgrade (#189)
* Started move to laravel 5.3

* Started updating login & registration flows for laravel 5.3 update

* Updated app emails to notification system

* Fixed registations bugs and removed email confirmation model

* Fixed large portion of laravel post-upgrade issues

* Fixed and tested LDAP process
2016-09-17 18:22:04 +01:00

27 lines
761 B
PHP

@extends('public')
@section('content')
<div class="text-center">
<div class="center-box text-left">
<h1>Reset Password</h1>
<p class="muted small">Enter your email below and you will be sent an email with a password reset link.</p>
<form action="{{ baseUrl("/password/email") }}" method="POST">
{!! csrf_field() !!}
<div class="form-group">
<label for="email">Email</label>
@include('form/text', ['name' => 'email'])
</div>
<div class="from-group">
<button class="button block pos">Send Reset Link</button>
</div>
</form>
</div>
</div>
@stop