2024-04-24 12:31:00 -07:00
|
|
|
{% extends "base.html" %}
|
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-30 16:08:44 +00:00
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
{% block per_page_title %}
|
|
|
|
|
Check your mobile number
|
2015-11-30 16:08:44 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
{% block maincolumn_content %}
|
2015-11-30 16:08:44 +00:00
|
|
|
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="grid-col-8">
|
2023-06-06 15:28:24 -04:00
|
|
|
<h1 class="font-body-2xl margin-bottom-3">Check your mobile number</h1>
|
2015-11-30 16:08:44 +00:00
|
|
|
|
2023-06-06 15:28:24 -04:00
|
|
|
<p>Check your mobile phone number is correct and then resend the security code.</p>
|
2015-11-30 16:08:44 +00:00
|
|
|
|
2018-09-19 12:39:36 +01:00
|
|
|
{% call form_wrapper() %}
|
2020-08-07 13:46:15 +01:00
|
|
|
{{ form.mobile_number }}
|
2016-08-22 12:52:05 +01:00
|
|
|
{{ page_footer("Resend security code") }}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% endcall %}
|
2015-11-30 16:08:44 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-12-02 15:33:24 +00:00
|
|
|
{% endblock %}
|