BookStack/resources/views/auth/register-confirm.blade.php
2015-09-05 20:25:57 +01:00

20 lines
438 B
PHP

@extends('public')
@section('header-buttons')
@if(!$signedIn)
<a href="/login"><i class="zmdi zmdi-sign-in"></i>Sign in</a>
@endif
@stop
@section('content')
<div class="text-center">
<div class="center-box">
<h2>Thanks for registering!</h2>
<p>Please check your email and click the confirmation button to access {{ \Setting::get('app-name') }}.</p>
</div>
</div>
@stop