2024-04-24 12:31:00 -07:00
|
|
|
{% extends "base.html" %}
|
2019-01-15 16:32:26 +00:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
2023-06-14 09:42:22 -06:00
|
|
|
This link has expired
|
2019-01-15 16:32:26 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="grid-col-8">
|
2023-06-14 09:42:22 -06:00
|
|
|
<h1 class="font-body-2xl margin-bottom-3">This link has expired</h1>
|
2019-01-15 16:32:26 +00:00
|
|
|
|
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>
|
2019-01-15 16:32:26 +00:00
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|