Files
notifications-admin/app/templates/views/signin.html
Beverly Nguyen 8722ae8dd9 - Replace homepage content with sunset messaging for May 30, 2025 service end
- Convert inline SVGs to external files for better maintainability
-Removed Login buttons except for /sign-in page
-Removed header navs
2025-06-02 12:56:47 -07:00

36 lines
939 B
HTML

{% extends "base.html" %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% block per_page_title %}
{% if again %}
You need to sign in again
{% else %}
Sign in
{% endif %}
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row margin-bottom-4">
<div class="tablet:grid-col-5">
{% if again %}
<h1 class="font-body-2xl margin-bottom-3">You need to sign in again</h1>
{% if other_device %}
<p>
We signed you out because you logged in to Notify on another device.
</p>
{% else %}
<p>
We signed you out because you have not used Notify for a while.
</p>
{% endif %}
{% else %}
<h1 class="font-body-2xl margin-bottom-3">Sign in</h1>
<p>Access your Notify.gov account by signing in with Login.gov:</p>
{% endif %}
</div>
</div>
{% endblock %}