Files
notifications-admin/app/templates/views/two-factor-email.html
T

23 lines
696 B
HTML
Raw Normal View History

{% extends "withoutnav_template.html" %}
{% from "components/page-footer.html" import page_footer %}
{% block per_page_title %}
2018-01-17 15:53:52 +00:00
{{ title }}
{% endblock %}
{% block maincolumn_content %}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<h1 class="heading-large">{{ title }}</h1>
<p class="govuk-body">Weve emailed you a link to sign in to Notify.</p>
<p class="govuk-body">Clicking the link will open Notify in a new browser window, so you can close this one.</p>
{{ page_footer(
2020-10-09 11:41:24 +01:00
secondary_link=url_for('main.email_not_received', next=redirect_url),
secondary_link_text='Not received an email?'
) }}
</div>
</div>
{% endblock %}