mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 02:42:26 -05:00
28 lines
750 B
HTML
28 lines
750 B
HTML
{% extends "admin_template.html" %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify
|
|
{% endblock %}
|
|
|
|
{% block fullwidth_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-xlarge">Check your email address</h1>
|
|
|
|
<p>Check your email address is correct and then resend the confirmation code.</p>
|
|
<p>
|
|
</p>
|
|
<form autocomplete="off" action="" method="post">
|
|
{{ form.hidden_tag() }}
|
|
{{ render_field(form.email_address, class='form-control-2-3') }}
|
|
<span class="font-xsmall">Your email address must end in .gov.uk</span>
|
|
<p>
|
|
<button class="button" role="button">Resend confirmation code</button>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|