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-02-23 15:45:19 +00:00
|
|
|
|
{% from "components/checkbox.html" import checkbox %}
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
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">
|
2016-04-23 16:11:41 +01:00
|
|
|
|
<h1 class="heading-large">Check your phone</h1>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2016-08-22 10:17:03 +01:00
|
|
|
|
<p>We’ve sent you a text message with a security code.</p>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper(class="extra-tracking") %}
|
2016-02-02 16:03:30 +00:00
|
|
|
|
{{ textbox(
|
|
|
|
|
|
form.sms_code,
|
|
|
|
|
|
width='5em',
|
2016-04-23 16:11:41 +01:00
|
|
|
|
autofocus=True
|
2016-02-02 16:03:30 +00:00
|
|
|
|
) }}
|
2016-02-01 16:57:29 +00:00
|
|
|
|
{{ page_footer(
|
2016-04-23 16:11:41 +01:00
|
|
|
|
"Continue",
|
2016-06-13 16:06:13 +01:00
|
|
|
|
secondary_link=url_for('main.check_and_resend_text_code'),
|
2016-04-23 16:11:41 +01:00
|
|
|
|
secondary_link_text='Not received a text message?'
|
2016-02-01 16:57:29 +00:00
|
|
|
|
) }}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% endcall %}
|
2016-02-01 16:57:29 +00:00
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2015-12-01 09:55:37 +00:00
|
|
|
|
{% endblock %}
|