xref: /webtrees/resources/views/verify-success-page.phtml (revision 1c6adce825f16611bd8b75a22114302de4b41cfe)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5/**
6 * @var string $title
7 */
8
9?>
10
11<h2 class="wt-page-title">
12    <?= $title ?>
13</h2>
14
15<div class="wt-page-content">
16    <p>
17        <?= I18N::translate('You have confirmed your request to become a registered user.') ?>
18    </p>
19    <p>
20        <?= 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.') ?>
21    </p>
22</div>
23