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