summaryrefslogtreecommitdiff
path: root/resources/views/register-success-page.phtml
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-10-12 11:04:12 +0100
committerGreg Roach <fisharebest@webtrees.net>2018-10-12 11:15:32 +0100
commitdd6b2bfcc550270bb6d6778e11576148f71e4330 (patch)
tree9462a8eabe1103a0e79c18c521b6b4858a3fb2dc /resources/views/register-success-page.phtml
parentafb591d7c8a3029b0ca03e6d185cacca3c22eb5f (diff)
downloadwebtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.gz
webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.bz2
webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.zip
Use .phtml extension for template files
Diffstat (limited to 'resources/views/register-success-page.phtml')
-rw-r--r--resources/views/register-success-page.phtml15
1 files changed, 15 insertions, 0 deletions
diff --git a/resources/views/register-success-page.phtml b/resources/views/register-success-page.phtml
new file mode 100644
index 0000000000..9544fd6476
--- /dev/null
+++ b/resources/views/register-success-page.phtml
@@ -0,0 +1,15 @@
+<?php use Fisharebest\Webtrees\I18N; ?>
+
+<h2 class="wt-page-title">
+ <?= $title ?>
+</h2>
+
+<div class="wt-page-content">
+ <p>
+ <?= I18N::translate('Hello %s…<br>Thank you for your registration.', e($user->getRealName())) ?>
+ </p>
+
+ <p>
+ <?= I18N::translate('We will now send a confirmation email to the address <b>%s</b>. You must verify your account request by following instructions in the confirmation email. If you do not confirm your account request within seven days, your application will be rejected automatically. You will have to apply again.<br><br>After you have followed the instructions in the confirmation email, the administrator still has to approve your request before your account can be used.<br><br>To sign in to this website, you will need to know your username and password.', $user->getEmail()) ?>
+ </p>
+</div>