xref: /webtrees/resources/views/emails/password-request-text.phtml (revision 7c2c99fad7cacd17c98be88238ff735d82c6351b)
165cf5706SGreg Roach<?php
2a00bcc63SGreg Roach
3*7c2c99faSGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
465cf5706SGreg Roachuse Fisharebest\Webtrees\I18N;
565cf5706SGreg Roach
6*7c2c99faSGreg Roach/**
7*7c2c99faSGreg Roach * @var string        $url
8*7c2c99faSGreg Roach * @var UserInterface $user
9*7c2c99faSGreg Roach */
10*7c2c99faSGreg Roach
1165cf5706SGreg Roach?>
12a00bcc63SGreg Roach<?= I18N::translate('Hello %s…', e($user->realName())) ?>
13a00bcc63SGreg Roach
14a00bcc63SGreg Roach<?= I18N::translate('To set a new password, follow this link.') ?>
15a00bcc63SGreg Roach
16a00bcc63SGreg Roach<a href="<?= e($url) ?>"><?= e($url) ?></a>
17a00bcc63SGreg Roach
18a00bcc63SGreg Roach<?= I18N::translate('If you did not request a new password, please ignore this message.') ?>
19