]> BookStack Code Mirror - bookstack/blob - resources/views/auth/register-confirm.blade.php
Fixes #45
[bookstack] / resources / views / auth / register-confirm.blade.php
1 @extends('public')
2
3 @section('header-buttons')
4     @if(!$signedIn)
5         <a href="/login"><i class="zmdi zmdi-sign-in"></i>Sign in</a>
6     @endif
7 @stop
8
9 @section('content')
10
11     <div class="text-center">
12         <div class="center-box">
13             <h2>Thanks for registering!</h2>
14             <p>Please check your email and click the confirmation button to access {{ \Setting::get('app-name') }}.</p>
15         </div>
16     </div>
17
18
19 @stop