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 %}
|
2015-12-01 09:55:37 +00:00
|
|
|
|
GOV.UK Notify | Text verification
|
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">
|
|
|
|
|
|
<h1 class="heading-xlarge">Text verification</h1>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2016-02-01 16:57:29 +00:00
|
|
|
|
<p>We've sent you a text message with a verification code.</p>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2016-02-01 16:57:29 +00:00
|
|
|
|
<form autocomplete="off" method="post">
|
|
|
|
|
|
{{ textbox(form.sms_code) }}
|
|
|
|
|
|
{{ page_footer(
|
|
|
|
|
|
"Continue",
|
|
|
|
|
|
back_link=url_for('.verification_code_not_received'),
|
|
|
|
|
|
back_link_text='I haven’t received a text'
|
|
|
|
|
|
) }}
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2015-12-01 09:55:37 +00:00
|
|
|
|
{% endblock %}
|