xref: /webtrees/resources/views/modules/fix-place-names/options.phtml (revision 29a51599e39417638370fe4c2c4d77201726c9ff)
1*29a51599SGreg Roach<?php
2*29a51599SGreg Roach
3*29a51599SGreg Roachdeclare(strict_types=1);
4*29a51599SGreg Roach
5*29a51599SGreg Roachuse Fisharebest\Webtrees\I18N;
6*29a51599SGreg Roach
7*29a51599SGreg Roach?>
8*29a51599SGreg Roach
9*29a51599SGreg Roach<div class="row form-group">
10*29a51599SGreg Roach    <label class="col-sm-3 col-form-label" for="search">
11*29a51599SGreg Roach        <?= I18N::translate('Search') ?>
12*29a51599SGreg Roach    </label>
13*29a51599SGreg Roach
14*29a51599SGreg Roach    <div class="col-sm-9">
15*29a51599SGreg Roach        <input class="form-control" id="search" name="search">
16*29a51599SGreg Roach    </div>
17*29a51599SGreg Roach</div>
18*29a51599SGreg Roach
19*29a51599SGreg Roach<div class="row form-group">
20*29a51599SGreg Roach    <label class="col-sm-3 col-form-label" for="replace">
21*29a51599SGreg Roach        <?= I18N::translate('Replace') ?>
22*29a51599SGreg Roach    </label>
23*29a51599SGreg Roach
24*29a51599SGreg Roach    <div class="col-sm-9">
25*29a51599SGreg Roach        <input class="form-control" id="replace" name="replace">
26*29a51599SGreg Roach    </div>
27*29a51599SGreg Roach</div>
28