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