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

29 lines
769 B
HTML
Raw Normal View History

{% extends "withoutnav_template.html" %}
{% from "components/button/macro.njk" import govukButton %}
{% block per_page_title %}
Resend email link
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large">Resend email link</h1>
<p> Email messages sometimes take a few minutes to arrive. If you do not recieve the email, you can resend it.</p>
<p> If you no longer have access to the email address you registered for this service, speak to your service manager to reset the email.</p>
<p>
{{ govukButton({
"element": "a",
"text": "Resend email link",
"href": url_for('main.resend_email_link')
}) }}
</p>
</div>
</div>
{% endblock %}