Files
notifications-admin/app/templates/views/email-not-received.html
Katie Smith f3bb93f460 Replace straightforward buttons and links styled like buttons
This replaces the buttons that aren't part of a macro and that we don't
need to write additional styles for with their govuk-frontend equivalent.

There were some links that were styled to look like buttons, so these
have also been replaced with the new govuk-frontend macro.

There was one button on the `choose-account.html` template that was in a
section of code that was never reached - this has been deleted.
2020-02-17 08:05:05 +00:00

29 lines
769 B
HTML

{% 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 %}