diff options
Diffstat (limited to 'templates/web/default/email_sent.html')
-rw-r--r-- | templates/web/default/email_sent.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/web/default/email_sent.html b/templates/web/default/email_sent.html new file mode 100644 index 000000000..fd947022a --- /dev/null +++ b/templates/web/default/email_sent.html @@ -0,0 +1,30 @@ +[% INCLUDE 'header.html', title => loc('Create a report') %] + +[% + messages = { + problem => { + action => loc('your problem will not be posted'), + worry => loc("we'll hang on to your problem report while you're checking your email."), + }, + update => { + action => loc('your update will not be posted'), + worry => loc("we'll hang on to your update while you're checking your email."), + }, + alert => { + action => loc('your alert will not be activated'), + worry => loc("we'll hang on to your alert while you're checking your email."), + }, + } +%] + +<h1>[% loc("Nearly Done! Now check your email...") %]</h1> + +<p>[% loc("The confirmation email <strong>may</strong> take a few minutes to arrive — <em>please</em> be patient.") %]</p> + +<p>[% loc("If you use web-based email or have 'junk mail' filters, you may wish to check your bulk/spam mail folders: sometimes, our messages are marked that way.") %]</p> + +<p>[% tprintf( loc("You must now click the link in the email we've just sent you — if you do not, %s."), messages.$email_type.action ) %].</p> + +<p>[% tprintf( loc("(Don't worry — %s)"), messages.$email_type.worry ) %]</p> + +[% INCLUDE 'footer.html' %] |