Files
notifications-admin/app/templates/views/email-not-received.html

31 lines
835 B
HTML
Raw Normal View History

{% 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>
2015-12-02 15:32:21 +00:00
<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() }}
<label class="form-label">Email address</label>
{{ form.email_address(class="form-control-2-3", autocomplete="off") }} <br>
<span class="font-xsmall">Your email address must end in .gov.uk</span>
<p>
<button class="button" href="verify" role="button">Resend confirmation code</button>
</p>
</form>
</div>
</div>
2015-12-02 15:32:21 +00:00
{% endblock %}