]> BookStack Code Mirror - bookstack/blob - resources/views/auth/user-unconfirmed.blade.php
Fixes #45
[bookstack] / resources / views / auth / user-unconfirmed.blade.php
1 @extends('public')
2
3 @section('content')
4
5     <div class="row">
6         <div class="col-md-6 col-md-offset-3">
7             <h2>Email Address not confirmed</h2>
8             <p class="text-muted">Your email address has not yet been confirmed. <br>
9                 Please click the link in the email that was sent shortly after you registered. <br>
10                 If you cannot find the email you can re-send the confirmation email by submitting the form below.
11             </p>
12             <hr>
13             <form action="/register/confirm/resend" method="POST">
14                 {!! csrf_field() !!}
15                 <div class="form-group">
16                     <label for="email">Email Address</label>
17                     @if(auth()->check())
18                         @include('form/text', ['name' => 'email', 'model' => auth()->user()])
19                     @else
20                         @include('form/text', ['name' => 'email'])
21                     @endif
22                 </div>
23                 <div class="form-group">
24                     <button type="submit" class="button pos">Resend Confirmation Email</button>
25                 </div>
26             </form>
27         </div>
28     </div>
29
30 @stop