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<!-- STATCOUNTER_SECURITY_ID --> 13<div class="row form-group"> 14 <label for="STATCOUNTER_SECURITY_ID" class="col-sm-3 col-form-label"> 15 <?= /* I18N: A configuration setting */ I18N::translate('Security code') ?> 16 </label> 17 <div class="col-sm-9"> 18 <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]+"> 19 </div> 20</div> 21 22<p> 23 <?= I18N::translate('Tracking and analytics are not added to the control panel.') ?> 24</p> 25