2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-01-11 13:15:10 +00:00
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2016-02-08 09:23:51 +00:00
|
|
|
|
Enter the codes we’ve sent you – GOV.UK Notify
|
2015-11-25 16:21:28 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
2016-02-01 16:57:29 +00:00
|
|
|
|
<div class="column-two-thirds">
|
2016-02-02 15:41:54 +00:00
|
|
|
|
<h1 class="heading-large">Enter the codes we’ve sent you</h1>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
We’ve sent you confirmation codes by email and text message.
|
|
|
|
|
|
</p>
|
2016-02-01 16:57:29 +00:00
|
|
|
|
<form autocomplete="off" method="post">
|
2016-02-02 15:12:59 +00:00
|
|
|
|
{{ textbox(
|
|
|
|
|
|
form.sms_code,
|
2016-02-02 15:31:11 +00:00
|
|
|
|
width='5em',
|
2016-02-02 15:12:59 +00:00
|
|
|
|
help_link=url_for('.check_and_resend_text_code'),
|
2016-02-02 15:41:54 +00:00
|
|
|
|
help_link_text='I haven’t received a text message'
|
2016-02-02 15:12:59 +00:00
|
|
|
|
) }}
|
2016-02-09 10:49:28 +00:00
|
|
|
|
{{ textbox(
|
|
|
|
|
|
form.email_code,
|
|
|
|
|
|
width='5em',
|
|
|
|
|
|
help_link=url_for('.check_and_resend_email_code'),
|
|
|
|
|
|
help_link_text='I haven’t received an email'
|
|
|
|
|
|
) }}
|
2016-02-01 16:57:29 +00:00
|
|
|
|
{{ page_footer("Continue") }}
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2015-12-01 09:56:46 +00:00
|
|
|
|
{% endblock %}
|