xref: /webtrees/resources/views/modules/bing-webmaster-tools/form.phtml (revision 1270d2767576ed4a83917769b0ee3613e3b010bf)
1<?php
2
3declare(strict_types=1);
4
5use Fisharebest\Webtrees\I18N;
6
7?>
8
9<div class="row mb-3">
10    <label for="BING_WEBMASTER_ID" class="col-sm-3 col-form-label">
11        <?= I18N::translate('Site verification code') ?>
12    </label>
13
14    <div class="col-sm-9">
15        <input type="text" class="form-control" id="BING_WEBMASTER_ID" name="BING_WEBMASTER_ID" value="<?= e($BING_WEBMASTER_ID ?? '') ?>" maxlength="255" pattern="[0-9a-zA-Z+=/_:.!-]*">
16    </div>
17</div>
18
19<p>
20    <?= I18N::translate('Site verification codes do not work when webtrees is installed in a subfolder.') ?>
21</p>
22