mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
43d9d2eba7
Allows BookStack to be installed at a non-root location on a domain. Closes #40.
27 lines
761 B
PHP
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 |