summaryrefslogtreecommitdiff
path: root/resources/views/modules/bing-webmaster-tools/form.phtml
blob: 31c72e634c4a6102a072639c9c6a4520ce12662e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

declare(strict_types=1);

use Fisharebest\Webtrees\I18N;

?>

<div class="row mb-3">
    <label for="BING_WEBMASTER_ID" class="col-sm-3 col-form-label">
        <?= I18N::translate('Site verification code') ?>
    </label>

    <div class="col-sm-9">
        <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+=/_:.!-]*">
    </div>
</div>

<p>
    <?= I18N::translate('Site verification codes do not work when webtrees is installed in a subfolder.') ?>
</p>