19fa6ab69SGreg Roach<?php 29fa6ab69SGreg Roach 3*7c2c99faSGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface; 49fa6ab69SGreg Roachuse Fisharebest\Webtrees\I18N; 5*7c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree; 6*7c2c99faSGreg Roach 7*7c2c99faSGreg Roach/** 8*7c2c99faSGreg Roach * @var string $base_url 9*7c2c99faSGreg Roach * @var string $comments 10*7c2c99faSGreg Roach * @var Tree|null $tree 11*7c2c99faSGreg Roach * @var UserInterface $user 12*7c2c99faSGreg Roach */ 139fa6ab69SGreg Roach 149fa6ab69SGreg Roach?> 15dd6b2bfcSGreg Roach<?= I18N::translate('Hello administrator…') ?> 16dd6b2bfcSGreg Roach 179fa6ab69SGreg Roach<?= /* I18N: %s is a server name/URL */ 189fa6ab69SGreg RoachI18N::translate('A prospective user has registered with webtrees at %s.', $base_url) ?> 19dd6b2bfcSGreg Roach 20c65e00b4SGreg Roach<?= I18N::translate('Username') ?> - <?= e($user->userName()) ?> 214cf33693Smrqd9 22e5a6b4d4SGreg Roach<?= I18N::translate('Real name') ?> - <?= e($user->realName()) ?> 234cf33693Smrqd9 24e5a6b4d4SGreg Roach<?= I18N::translate('Email address') ?> - <?= e($user->email()) ?> 254cf33693Smrqd9 26dd6b2bfcSGreg Roach<?= I18N::translate('Comments') ?> - <?= e($comments) ?> 274cf33693Smrqd9 289fa6ab69SGreg Roach<?= I18N::translate('Tree') ?> - <?= e($tree ? $tree->name() : '') ?> 29dd6b2bfcSGreg Roach 30dd6b2bfcSGreg Roach<?= I18N::translate('The user has been sent an email with the information necessary to confirm the access request.') ?> 31dd6b2bfcSGreg Roach 32dd6b2bfcSGreg Roach<?= 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.') ?> 33