1<?php 2 3declare(strict_types=1); 4 5use Fisharebest\Webtrees\I18N; 6 7?> 8 9<div class="row mb-3"> 10 <label class="col-sm-3 col-form-label" for="search-for"> 11 <?= I18N::translate('Search') ?> 12 </label> 13 14 <div class="col-sm-9"> 15 <input class="form-control" id="search-for" name="search-for"> 16 </div> 17</div> 18 19<div class="row mb-3"> 20 <label class="col-sm-3 col-form-label" for="replace-with"> 21 <?= I18N::translate('Replace') ?> 22 </label> 23 24 <div class="col-sm-9"> 25 <input class="form-control" id="replace-with" name="replace-with"> 26 </div> 27</div> 28