2017-11-07 16:11:31 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2020-01-30 14:01:13 +00:00
|
|
|
|
{% from "components/button/macro.njk" import govukButton %}
|
2017-11-07 16:11:31 +00:00
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Resend email link
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
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">
|
2017-11-07 16:11:31 +00:00
|
|
|
|
<h1 class="heading-large">Resend email link</h1>
|
|
|
|
|
|
|
2020-05-29 17:11:01 +01:00
|
|
|
|
<p class="govuk-body">Emails sometimes take a few minutes to arrive. If you do not receive an email link, Notify can send you a new one.</p>
|
|
|
|
|
|
<p class="govuk-body">
|
2020-01-30 14:01:13 +00:00
|
|
|
|
{{ govukButton({
|
|
|
|
|
|
"element": "a",
|
|
|
|
|
|
"text": "Resend email link",
|
|
|
|
|
|
"href": url_for('main.resend_email_link')
|
|
|
|
|
|
}) }}
|
|
|
|
|
|
</p>
|
2017-11-07 16:11:31 +00:00
|
|
|
|
|
2020-02-04 16:58:55 +00:00
|
|
|
|
<h2 class="heading-medium">If your email address 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 email address for your account</li>
|
|
|
|
|
|
<li>select <span class="govuk-body govuk-!-font-weight-bold">Resend email link</span></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
2017-11-07 16:11:31 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2020-01-30 14:01:13 +00:00
|
|
|
|
{% endblock %}
|