165cf5706SGreg Roach<?php 2a00bcc63SGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 57c2c99faSGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface; 665cf5706SGreg Roachuse Fisharebest\Webtrees\I18N; 765cf5706SGreg Roach 87c2c99faSGreg Roach/** 97c2c99faSGreg Roach * @var string $url 107c2c99faSGreg Roach * @var UserInterface $user 117c2c99faSGreg Roach */ 127c2c99faSGreg Roach 1365cf5706SGreg Roach?> 14a00bcc63SGreg Roach<?= I18N::translate('Hello %s…', e($user->realName())) ?> 15a00bcc63SGreg Roach 16a00bcc63SGreg Roach<?= I18N::translate('To set a new password, follow this link.') ?> 17a00bcc63SGreg Roach 18a00bcc63SGreg Roach<a href="<?= e($url) ?>"><?= e($url) ?></a> 19a00bcc63SGreg Roach 20a00bcc63SGreg Roach<?= I18N::translate('If you did not request a new password, please ignore this message.') ?> 21