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