1<?php 2 3use Fisharebest\Webtrees\I18N; 4 5?> 6<div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>"> 7 <p> 8 <?= I18N::translate('Hello %s…', e($user->realName())) ?> 9 </p> 10 11 <p> 12 <?= /* I18N: %1$s is the site URL and %2$s is an email address */ 13 I18N::translate('You (or someone claiming to be you) has requested an account at %1$s using the email address %2$s.', e($base_url), e($user->email())) ?> 14 </p> 15 16 <p> 17 <?= I18N::translate('Follow this link to verify your email address.') ?> 18 </p> 19 20 <p> 21 <a href="<?= e($verify_url) ?>"> 22 <?= e($verify_url) ?> 23 </a> 24 </p> 25 26 <p> 27 <?= I18N::translate('If you didn’t request an account, you can just delete this message.') ?> 28 </p> 29</div> 30