Files
notifications-admin/app/templates/views/email-link-invalid.html
T

24 lines
493 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% from "components/page-footer.html" import page_footer %}
{% block per_page_title %}
This link has expired
{% endblock %}
{% block maincolumn_content %}
2023-08-23 16:18:25 -04:00
<div class="grid-row">
<div class="grid-col-8">
<h1 class="font-body-2xl margin-bottom-3">This link has expired</h1>
2023-06-06 15:28:24 -04:00
<p>
2023-08-08 16:19:17 -04:00
<a class="usa-link" href="{{ url_for('main.sign_in', next=redirect_url) }}">
2020-10-09 11:41:47 +01:00
Sign in again
</a> to get a new link.
</p>
</div>
</div>
{% endblock %}