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