2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2020-01-30 14:01:13 +00:00
|
|
|
|
{% from "components/button/macro.njk" import govukButton %}
|
2015-11-30 16:41:05 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Resend verification code
|
2015-11-30 16:41:05 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-30 16:41:05 +00:00
|
|
|
|
|
2020-02-19 11:57:15 +00:00
|
|
|
|
<div class="govuk-grid-row">
|
2020-02-19 12:36:02 +00:00
|
|
|
|
<div class="govuk-grid-column-two-thirds">
|
2016-08-22 10:17:03 +01:00
|
|
|
|
<h1 class="heading-large">Resend security code</h1>
|
2015-11-30 16:41:05 +00:00
|
|
|
|
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">Text messages sometimes take a few minutes to arrive. If you do not receive a security code, Notify can send you a new one.</p>
|
|
|
|
|
|
<p class="govuk-body">
|
2020-02-04 16:58:55 +00:00
|
|
|
|
{{ govukButton({
|
|
|
|
|
|
"element": "a",
|
|
|
|
|
|
"text": "Resend security code",
|
|
|
|
|
|
"href": url_for('main.check_and_resend_verification_code')
|
|
|
|
|
|
}) }}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<h2 class="heading-medium">If your mobile number has changed</h2>
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">You’ll need to:</p>
|
2020-02-04 16:58:55 +00:00
|
|
|
|
<ul class="govuk-list govuk-list--bullet">
|
|
|
|
|
|
<li>find a member of your team who has permission to manage settings, team and usage</li>
|
|
|
|
|
|
<li>ask them to change the mobile number for your account</li>
|
|
|
|
|
|
<li>select <span class="govuk-body govuk-!-font-weight-bold">Resend security code</span></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2015-11-30 16:41:05 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2015-12-04 14:56:23 +00:00
|
|
|
|
{% endblock %}
|