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

26 lines
691 B
HTML
Raw Normal View History

{% 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 %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2017-02-13 10:45:15 +00:00
{% block per_page_title %}
Check your mobile number
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large">Check your mobile number</h1>
<p>Check your mobile phone number is correct and then resend the security code.</p>
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
2016-01-11 13:15:10 +00:00
{{ textbox(form.mobile_number) }}
{{ page_footer("Resend security code") }}
2018-09-19 12:39:36 +01:00
{% endcall %}
</div>
</div>
2015-12-02 15:33:24 +00:00
{% endblock %}