mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 17:45:32 -04:00
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.
29 lines
769 B
HTML
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 %}
|