xref: /webtrees/resources/views/password-request-page.phtml (revision a00bcc6367b57a659a7d6d69e7e1d00f79db8d9f)
1*a00bcc63SGreg Roach<?php
2*a00bcc63SGreg Roachuse Fisharebest\Webtrees\I18N;
3*a00bcc63SGreg Roach
4*a00bcc63SGreg Roach/**
5*a00bcc63SGreg Roach * @var string $title
6*a00bcc63SGreg Roach */
7*a00bcc63SGreg Roach?>
8*a00bcc63SGreg Roach
9*a00bcc63SGreg Roach<h2 class="wt-page-title">
10*a00bcc63SGreg Roach    <?= $title ?>
11*a00bcc63SGreg Roach</h2>
12*a00bcc63SGreg Roach
13*a00bcc63SGreg Roach<form class="wt-page-options wt-page-options-login" method="post">
14*a00bcc63SGreg Roach    <?= csrf_field() ?>
15*a00bcc63SGreg Roach
16*a00bcc63SGreg Roach    <div class="form-group row">
17*a00bcc63SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="email">
18*a00bcc63SGreg Roach            <?= I18N::translate('Email') ?>
19*a00bcc63SGreg Roach        </label>
20*a00bcc63SGreg Roach        <div class="col-sm-9 wt-page-options-value">
21*a00bcc63SGreg Roach            <input class="form-control" type="email" id="email" name="email" autocomplete="email" required>
22*a00bcc63SGreg Roach        </div>
23*a00bcc63SGreg Roach    </div>
24*a00bcc63SGreg Roach
25*a00bcc63SGreg Roach    <div class="form-group row">
26*a00bcc63SGreg Roach        <div class="col-sm-3 col-form-label wt-page-options-label">
27*a00bcc63SGreg Roach        </div>
28*a00bcc63SGreg Roach        <div class="col-sm-9 wt-page-options-value">
29*a00bcc63SGreg Roach            <button class="btn btn-primary" type="submit">
30*a00bcc63SGreg Roach                <?= /* I18N: A button label. */
31*a00bcc63SGreg Roach                I18N::translate('continue') ?>
32*a00bcc63SGreg Roach            </button>
33*a00bcc63SGreg Roach
34*a00bcc63SGreg Roach        </div>
35*a00bcc63SGreg Roach    </div>
36*a00bcc63SGreg Roach</form>
37