xref: /webtrees/resources/views/modules/statcounter/form.phtml (revision 69100c6d2f376ba137a90d02f7e41a8ae5929352)
1<?php use Fisharebest\Webtrees\I18N; ?>
2
3<div class="row form-group">
4    <label for="STATCOUNTER_PROJECT_ID" class="col-sm-3 col-form-label">
5        <?= /* I18N: A configuration setting */ I18N::translate('Site identification code') ?>
6    </label>
7    <div class="col-sm-9">
8        <input type="text" class="form-control" id="STATCOUNTER_PROJECT_ID" name="STATCOUNTER_PROJECT_ID" value="<?= e($STATCOUNTER_PROJECT_ID ?? '') ?>" maxlength="255" pattern="[0-9]+">
9    </div>
10</div>
11
12<div class="row form-group">
13    <label for="STATCOUNTER_SECURITY_ID" class="col-sm-3 col-form-label">
14        <?= /* I18N: A configuration setting */ I18N::translate('Security code') ?>
15    </label>
16    <div class="col-sm-9">
17        <input type="text" class="form-control" id="STATCOUNTER_SECURITY_ID" name="STATCOUNTER_SECURITY_ID" value="<?= e($STATCOUNTER_SECURITY_ID ?? '') ?>" maxlength="255" pattern="[0-9a-zA-Z]+">
18    </div>
19</div>
20