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.
20 lines
462 B
PHP
20 lines
462 B
PHP
@extends('public')
|
|
|
|
@section('header-buttons')
|
|
@if(!$signedIn)
|
|
<a href="{{ baseUrl("/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('app-name', 'BookStack') }}.</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@stop
|