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

25 lines
663 B
HTML
Raw Normal View History

{% extends "withoutnav_template.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 %}
2017-02-13 10:45:15 +00:00
{% block per_page_title %}
Check your mobile number
{% endblock %}
{% block maincolumn_content %}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
2023-06-06 15:28:24 -04:00
<h1 class="font-body-2xl margin-bottom-3">Check your mobile number</h1>
2023-06-06 15:28:24 -04:00
<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() %}
{{ 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 %}