blob: c2c0a27c91fa40ed655109b1d6ef46b7e0836c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Tree;
/**
* @var string $title
*/
?>
<h2 class="wt-page-title">
<?= $title ?>
</h2>
<form method="post" class="wt-page-options wt-page-options-forgot-password"">
<?= csrf_field() ?>
<input type="hidden" name="tree" value="<?= $tree instanceof Tree ? e($tree->name()) : '' ?>">
<div class="form-group row">
<label class="col-sm-3 col-form-label wt-page-options-label" for="identifier">
<?= I18N::translate('Username or email address') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<input class="form-control" type="text" id="identifier" name="identifier">
</div>
</div>
<div class="form-group row">
<div class="col-sm-3 col-form-label wt-page-options-label">
</div>
<div class="col-sm-9 wt-page-options-value">
<button class="btn btn-primary" type="submit">
<?= /* I18N: A button label. */
I18N::translate('continue') ?>
</button>
</div>
</div>
</form>
|