xref: /webtrees/resources/views/verify-failure-page.phtml (revision 1ff45046fabc22237b5d0d8e489c96f031fc598d)
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('Could not verify the information you entered. Please try again or contact the site administrator for more information.') ?>
20    </p>
21</div>
22