1<?php 2 3declare(strict_types=1); 4 5use Fisharebest\Webtrees\Contracts\UserInterface; 6use Fisharebest\Webtrees\I18N; 7use Fisharebest\Webtrees\Tree; 8 9/** 10 * @var string $base_url 11 * @var string $comments 12 * @var Tree|null $tree 13 * @var UserInterface $user 14 */ 15 16?> 17<?= I18N::translate('Hello administrator…') ?> 18 19<?= /* I18N: %s is a server name/URL */ 20I18N::translate('A prospective user has registered with webtrees at %s.', $base_url) ?> 21 22<?= I18N::translate('Username') ?> - <?= e($user->userName()) ?> 23 24<?= I18N::translate('Real name') ?> - <?= e($user->realName()) ?> 25 26<?= I18N::translate('Email address') ?> - <?= e($user->email()) ?> 27 28<?= I18N::translate('Comments') ?> - <?= e($comments) ?> 29 30<?= I18N::translate('Tree') ?> - <?= e($tree ? $tree->name() : '') ?> 31 32<?= I18N::translate('The user has been sent an email with the information necessary to confirm the access request.') ?> 33 34<?= I18N::translate('You will be informed by email when this prospective user has confirmed the request. You can then complete the process by activating the username. The new user will not be able to sign in until you activate the account.') ?> 35