xref: /webtrees/resources/views/modules/fix-place-names/options.phtml (revision 9e3c2cf9009c4c2140f50ddfc80b91f2f82cdce5)
129a51599SGreg Roach<?php
229a51599SGreg Roach
329a51599SGreg Roachdeclare(strict_types=1);
429a51599SGreg Roach
529a51599SGreg Roachuse Fisharebest\Webtrees\I18N;
629a51599SGreg Roach
729a51599SGreg Roach?>
829a51599SGreg Roach
9*9e3c2cf9SGreg Roach<div class="row mb-3">
1029a51599SGreg Roach    <label class="col-sm-3 col-form-label" for="search">
1129a51599SGreg Roach        <?= I18N::translate('Search') ?>
1229a51599SGreg Roach    </label>
1329a51599SGreg Roach
1429a51599SGreg Roach    <div class="col-sm-9">
1529a51599SGreg Roach        <input class="form-control" id="search" name="search">
1629a51599SGreg Roach    </div>
1729a51599SGreg Roach</div>
1829a51599SGreg Roach
19*9e3c2cf9SGreg Roach<div class="row mb-3">
2029a51599SGreg Roach    <label class="col-sm-3 col-form-label" for="replace">
2129a51599SGreg Roach        <?= I18N::translate('Replace') ?>
2229a51599SGreg Roach    </label>
2329a51599SGreg Roach
2429a51599SGreg Roach    <div class="col-sm-9">
2529a51599SGreg Roach        <input class="form-control" id="replace" name="replace">
2629a51599SGreg Roach    </div>
2729a51599SGreg Roach</div>
28