]> BookStack Code Mirror - bookstack/blob - resources/views/auth/register-confirm.blade.php
Add APP_LOGGING
[bookstack] / resources / views / auth / register-confirm.blade.php
1 @extends('public')
2
3 @section('header-buttons')
4     @if(!$signedIn)
5         <a href="{{ baseUrl("/login") }}"><i class="zmdi zmdi-sign-in"></i>{{ trans('auth.log_in') }}</a>
6     @endif
7 @stop
8
9 @section('content')
10
11     <div class="text-center">
12         <div class="center-box">
13             <h2>{{ trans('auth.register_thanks') }}</h2>
14             <p>{{ trans('auth.register_confirm', ['appName' => setting('app-name')]) }}</p>
15         </div>
16     </div>
17
18 @stop