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