mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
21 lines
513 B
PHP
21 lines
513 B
PHP
@extends('public')
|
|
|
|
@section('header-buttons')
|
|
@if(!$signedIn)
|
|
<a href="{{ baseUrl("/login") }}">@icon('login') {{ trans('auth.log_in') }}</a>
|
|
@endif
|
|
@stop
|
|
|
|
@section('content')
|
|
|
|
<div class="text-center">
|
|
<div class="card center-box">
|
|
<h3>@icon('users') {{ trans('auth.register_thanks') }}</h3>
|
|
<div class="body">
|
|
<p>{{ trans('auth.register_confirm', ['appName' => setting('app-name')]) }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|