xref: /webtrees/resources/views/verify-success-page.phtml (revision b11cdcd45131b1585d66693fab363cfeb18c51a4)
1<?php
2
3declare(strict_types=1);
4
5use Fisharebest\Webtrees\I18N;
6
7/**
8 * @var string $title
9 */
10
11?>
12
13<h2 class="wt-page-title">
14    <?= $title ?>
15</h2>
16
17<div class="wt-page-content">
18    <p>
19        <?= I18N::translate('You have confirmed your request to become a registered user.') ?>
20    </p>
21    <p>
22        <?= I18N::translate('The administrator has been informed. As soon as they give you permission to sign in, you can sign in with your username and password.') ?>
23    </p>
24</div>
25