2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
2021-12-31 12:08:14 +00:00
|
|
|
|
{% if again %}
|
|
|
|
|
|
You need to sign in again
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
Sign in
|
|
|
|
|
|
{% endif %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2024-02-27 11:53:51 -05:00
|
|
|
|
<div class="grid-row margin-bottom-4">
|
2024-02-26 11:10:50 -05:00
|
|
|
|
<div class="tablet:grid-col-5">
|
2017-02-16 13:33:32 +00:00
|
|
|
|
{% if again %}
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<h1 class="font-body-2xl margin-bottom-3">You need to sign in again</h1>
|
2017-02-17 14:06:09 +00:00
|
|
|
|
{% if other_device %}
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2017-02-17 14:06:09 +00:00
|
|
|
|
We signed you out because you logged in to Notify on another device.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
{% else %}
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2019-09-13 12:53:22 +01:00
|
|
|
|
We signed you out because you have not used Notify for a while.
|
2017-02-17 14:06:09 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
{% endif %}
|
2024-04-17 14:41:04 -04:00
|
|
|
|
<a class="usa-link usa-button" href="{{ initial_signin_url }}">Sign in with Login.gov</a>
|
2017-02-16 13:33:32 +00:00
|
|
|
|
{% else %}
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<h1 class="font-body-2xl margin-bottom-3">Sign in</h1>
|
2024-04-15 15:50:42 -04:00
|
|
|
|
<p>Access your Notify.gov account by signing in with Login.gov:</p>
|
|
|
|
|
|
<a class="usa-link usa-button" href="{{ initial_signin_url }}">Sign in with Login.gov</a>
|
2017-02-16 13:33:32 +00:00
|
|
|
|
{% endif %}
|
2016-02-01 16:57:29 +00:00
|
|
|
|
</div>
|
2024-03-12 13:37:44 -04:00
|
|
|
|
<div class="tablet:grid-col-6 tablet:grid-offset-1 margin-top-2 padding-y-2 padding-x-4 bg-base-lightest">
|
2024-04-15 15:50:42 -04:00
|
|
|
|
<h2 class="font-body-lg">Effective April 16, 2024 Notify.gov requires you sign-in through Login.gov</h2>
|
2024-03-12 13:37:44 -04:00
|
|
|
|
<p>Why are we doing this?</p>
|
|
|
|
|
|
<ul class="usa-list">
|
|
|
|
|
|
<li><strong>Enhanced security:</strong> Login.gov is really secure and trustworthy</li>
|
|
|
|
|
|
<li><strong>One single source for signing in:</strong> You can use Login.gov for other services within the federal government</li>
|
|
|
|
|
|
<li><strong>2FA flexibility:</strong> Login.gov supports multiple methods for users to verify their identity.</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<p>What do I need to do?</p>
|
|
|
|
|
|
<ul class="usa-list">
|
|
|
|
|
|
<li>If you have a Login.gov account, start using it to sign in to Notify today.</li>
|
2024-04-15 15:50:42 -04:00
|
|
|
|
<li>If you don’t have a Login.gov account, you must create one to continue to access Notify.</li>
|
2024-03-12 13:37:44 -04:00
|
|
|
|
</ul>
|
|
|
|
|
|
<div class="border-bottom border-base-lighter margin-y-4"></div>
|
2024-04-15 15:50:42 -04:00
|
|
|
|
<a class="usa-link usa-button usa-button--outline margin-bottom-3" href="{{ initial_signin_url }}">Create Login.gov account</a>
|
2024-03-12 13:37:44 -04:00
|
|
|
|
</div>
|
2024-02-26 11:10:50 -05:00
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
2015-12-04 14:50:23 +00:00
|
|
|
|
{% endblock %}
|