xref: /webtrees/resources/views/emails/password-request-text.phtml (revision 1ff45046fabc22237b5d0d8e489c96f031fc598d)
1<?php
2
3declare(strict_types=1);
4
5use Fisharebest\Webtrees\Contracts\UserInterface;
6use Fisharebest\Webtrees\I18N;
7
8/**
9 * @var string        $url
10 * @var UserInterface $user
11 */
12
13?>
14<?= I18N::translate('Hello %s…', e($user->realName())) ?>
15
16<?= I18N::translate('To set a new password, follow this link.') ?>
17
18<a href="<?= e($url) ?>"><?= e($url) ?></a>
19
20<?= I18N::translate('If you did not request a new password, please ignore this message.') ?>
21