xref: /webtrees/resources/views/register-success-page.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1<?php
2
3declare(strict_types=1);
4
5use Fisharebest\Webtrees\Contracts\UserInterface;
6use Fisharebest\Webtrees\I18N;
7
8/**
9 * @var string        $title
10 * @var UserInterface $user
11 */
12
13?>
14
15<h2 class="wt-page-title">
16    <?= $title ?>
17</h2>
18
19<div class="wt-page-content">
20    <p>
21        <?= I18N::translate('Hello %s…<br>Thank you for your registration.', e($user->realName())) ?>
22    </p>
23
24    <p>
25        <?= I18N::translate('We will now send a confirmation email to the address <b>%s</b>. You must verify your account request by following instructions in the confirmation email. If you do not confirm your account request within seven days, your application will be rejected automatically. You will have to apply again.<br><br>After you have followed the instructions in the confirmation email, the administrator still has to approve your request before your account can be used.<br><br>To sign in to this website, you will need to know your username and password.', $user->email()) ?>
26    </p>
27</div>
28