2015-11-30 16:08:44 +00:00
|
|
|
{% extends "admin_template.html" %}
|
2016-01-07 20:11:22 +00:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2015-11-30 16:08:44 +00:00
|
|
|
|
|
|
|
|
{% block page_title %}
|
|
|
|
|
GOV.UK Notify
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2015-12-15 08:20:25 +00:00
|
|
|
{% block fullwidth_content %}
|
2015-11-30 16:08:44 +00:00
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-two-thirds">
|
|
|
|
|
<h1 class="heading-xlarge">Check your mobile number</h1>
|
|
|
|
|
|
2015-12-02 15:33:24 +00:00
|
|
|
<p>Check your mobile phone number is correct and then resend the confirmation code.</p>
|
2015-11-30 16:08:44 +00:00
|
|
|
|
2015-12-15 15:35:30 +00:00
|
|
|
<form autocomplete="off" action="" method="post">
|
2015-12-16 12:20:25 +00:00
|
|
|
{{ form.hidden_tag() }}
|
2016-01-05 17:08:50 +00:00
|
|
|
{{ render_field(form.mobile_number, class='form-control-2-3') }}
|
2016-01-07 20:11:22 +00:00
|
|
|
{{ page_footer("Resend confirmation code") }}
|
2015-12-15 15:35:30 +00:00
|
|
|
</form>
|
2015-11-30 16:08:44 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-12-02 15:33:24 +00:00
|
|
|
{% endblock %}
|