mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-04 21:51:43 -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.
30 lines
827 B
HTML
30 lines
827 B
HTML
{% extends "withoutnav_template.html" %}
|
|
{% from "components/button/macro.njk" import govukButton %}
|
|
|
|
{% block per_page_title %}
|
|
Resend verification code
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-large">Resend security code</h1>
|
|
|
|
<p>Text messages sometimes take a few minutes to arrive. If you do not receive the text message, you can resend it.</p>
|
|
|
|
<p>If you no longer have access to the phone with the number you registered for this service, speak to your service manager to reset the number.</p>
|
|
|
|
|
|
<p>
|
|
{{ govukButton({
|
|
"element": "a",
|
|
"text": "Resend security code",
|
|
"href": url_for('main.check_and_resend_verification_code')
|
|
}) }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|