mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-12 06:24:04 -05:00
24 lines
493 B
HTML
24 lines
493 B
HTML
{% extends "base.html" %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block per_page_title %}
|
|
This link has expired
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="grid-col-8">
|
|
<h1 class="font-body-2xl margin-bottom-3">This link has expired</h1>
|
|
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for('main.sign_in', next=redirect_url) }}">
|
|
Sign in again
|
|
</a> to get a new link.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|