xref: /webtrees/resources/views/emails/register-notify-html.phtml (revision f2de565620e3191ce032cf707499171e6e8d154a)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2fd5f2920SGreg Roach<div <?= I18N::htmlAttributes() ?>>
3dd6b2bfcSGreg Roach    <p>
4dd6b2bfcSGreg Roach        <?= I18N::translate('Hello administrator…') ?>
5dd6b2bfcSGreg Roach    </p>
6dd6b2bfcSGreg Roach
7dd6b2bfcSGreg Roach    <p>
8fd5f2920SGreg Roach        <?= /* I18N: %s is a server name/URL */
9*f2de5656SGreg Roach        I18N::translate('A prospective user has registered with webtrees at %s.', e($base_url)) ?>
10dd6b2bfcSGreg Roach    </p>
11dd6b2bfcSGreg Roach
12dd6b2bfcSGreg Roach    <dl>
13dd6b2bfcSGreg Roach        <dt><?= I18N::translate('Username') ?></dt>
14c65e00b4SGreg Roach        <dd><?= e($user->userName()) ?></dd>
15dd6b2bfcSGreg Roach        <dt><?= I18N::translate('Real name') ?></dt>
16e5a6b4d4SGreg Roach        <dd><?= e($user->realName()) ?></dd>
17dd6b2bfcSGreg Roach        <dt><?= I18N::translate('Email address') ?></dt>
18e5a6b4d4SGreg Roach        <dd><?= e($user->email()) ?></dd>
19dd6b2bfcSGreg Roach        <dt><?= I18N::translate('Comments') ?></dt>
20dd6b2bfcSGreg Roach        <dd><?= e($comments) ?></dd>
21dd6b2bfcSGreg Roach    </dl>
22dd6b2bfcSGreg Roach
23dd6b2bfcSGreg Roach    <p>
24dd6b2bfcSGreg Roach        <?= I18N::translate('The user has been sent an email with the information necessary to confirm the access request.') ?>
25dd6b2bfcSGreg Roach    </p>
26dd6b2bfcSGreg Roach
27dd6b2bfcSGreg Roach    <p>
28dd6b2bfcSGreg 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.') ?>
29dd6b2bfcSGreg Roach    </p>
30fd5f2920SGreg Roach</div>
31