1<?php 2 3declare(strict_types=1); 4 5use Fisharebest\Webtrees\I18N; 6 7?> 8 9<div class="row mb-3"> 10 <label for="STATCOUNTER_PROJECT_ID" class="col-sm-3 col-form-label"> 11 <?= /* I18N: A configuration setting */ I18N::translate('Site identification code') ?> 12 </label> 13 <div class="col-sm-9"> 14 <input type="text" class="form-control" id="STATCOUNTER_PROJECT_ID" name="STATCOUNTER_PROJECT_ID" value="<?= e($STATCOUNTER_PROJECT_ID ?? '') ?>" maxlength="255" pattern="[0-9]+"> 15 </div> 16</div> 17 18<div class="row mb-3"> 19 <label for="STATCOUNTER_SECURITY_ID" class="col-sm-3 col-form-label"> 20 <?= /* I18N: A configuration setting */ I18N::translate('Security code') ?> 21 </label> 22 <div class="col-sm-9"> 23 <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]+"> 24 </div> 25</div> 26