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?> 1265cf5706SGreg Roach<div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>"> 13a00bcc63SGreg Roach <p> 14a00bcc63SGreg Roach <?= I18N::translate('Hello %s…', '<span dir="auto">' . e($user->realName()) . '</span>') ?> 15a00bcc63SGreg Roach </p> 16a00bcc63SGreg Roach 17a00bcc63SGreg Roach <p> 18a00bcc63SGreg Roach <?= I18N::translate('To set a new password, follow this link.') ?> 19a00bcc63SGreg Roach </p> 20a00bcc63SGreg Roach 21a00bcc63SGreg Roach <p> 22a00bcc63SGreg Roach <a href="<?= e($url) ?>"><?= e($url) ?></a> 23a00bcc63SGreg Roach </p> 24a00bcc63SGreg Roach 25a00bcc63SGreg Roach <p> 26a00bcc63SGreg Roach <?= I18N::translate('If you did not request a new password, please ignore this message.') ?> 27a00bcc63SGreg Roach </p> 28a00bcc63SGreg Roach</div> 29