1<?php 2 3use Fisharebest\Webtrees\Contracts\UserInterface; 4use Fisharebest\Webtrees\I18N; 5 6/** 7 * @var string $base_url 8 * @var UserInterface $user 9 * @var string $url 10 */ 11 12?> 13 14<div dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>"> 15 <p> 16 <?= I18N::translate('Hello %s…', '<bdi>' . e($user->realName()) . '</bdi>') ?> 17 </p> 18 19 <p> 20 <?= I18N::translate('The administrator at the webtrees site %s has approved your application for an account. You may now sign in by accessing the following link: %s', e($base_url), e($base_url)) ?> 21 </p> 22</div> 23