xref: /webtrees/resources/views/register-success-page.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
5dc270d8cSGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
6d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
7d70512abSGreg Roach
8dc270d8cSGreg Roach/**
9dc270d8cSGreg Roach * @var string        $title
10dc270d8cSGreg Roach * @var UserInterface $user
11dc270d8cSGreg Roach */
12dc270d8cSGreg Roach
13d70512abSGreg Roach?>
14dd6b2bfcSGreg Roach
15dd6b2bfcSGreg Roach<h2 class="wt-page-title">
16dd6b2bfcSGreg Roach    <?= $title ?>
17dd6b2bfcSGreg Roach</h2>
18dd6b2bfcSGreg Roach
19dd6b2bfcSGreg Roach<div class="wt-page-content">
20dd6b2bfcSGreg Roach    <p>
21e5a6b4d4SGreg Roach        <?= I18N::translate('Hello %s…<br>Thank you for your registration.', e($user->realName())) ?>
22dd6b2bfcSGreg Roach    </p>
23dd6b2bfcSGreg Roach
24dd6b2bfcSGreg Roach    <p>
25e5a6b4d4SGreg Roach        <?= 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()) ?>
26dd6b2bfcSGreg Roach    </p>
27dd6b2bfcSGreg Roach</div>
28