mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-02 04:20:34 -04:00
When you register you type in your email address. If you don’t get the email there’s no way of knowing it’s because you’ve mistyped it. If we play back the email address, you can double check it. This commit also removes the 2/3 column on this page to make sure a long email address doesn’t wrap.
14 lines
368 B
HTML
14 lines
368 B
HTML
{% extends "withoutnav_template.html" %}
|
||
|
||
{% block page_title %}
|
||
Check your email – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">Now check your email</h1>
|
||
<p>We’ve sent an email to {{ session['user_details']['email'] }}.</p>
|
||
<p>Click the link in the email to continue your registration.</p>
|
||
|
||
{% endblock %}
|