xref: /webtrees/resources/views/verify-failure-page.phtml (revision 4a9a60957058ca2a34e30a0d6f783e1540606590)
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