2015-11-30 16:08:44 +00:00
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
|
|
|
|
GOV.UK Notify
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
<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() }}
|
|
|
|
|
<p>
|
2015-12-15 15:35:30 +00:00
|
|
|
<label class="form-label">Mobile phone number</label>
|
|
|
|
|
{{ form.mobile_number(class="form-control-1-4", autocomplete="off") }} <br>
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<button class="button" href="verify" role="button">Resend confirmation code</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
2015-11-30 16:08:44 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-12-02 15:33:24 +00:00
|
|
|
{% endblock %}
|