Files
notifications-admin/app/templates/views/signin.html
T

48 lines
1.7 KiB
HTML
Raw Normal View History

{% 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 %}
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 %}
{% endblock %}
{% block maincolumn_content %}
2023-06-08 13:12:00 -04:00
<div class="grid-row">
<div class="tablet:grid-col-12">
{% 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 %}
{% else %}
2023-06-06 15:28:24 -04:00
<h1 class="font-body-2xl margin-bottom-3">Sign in</h1>
2023-12-14 07:34:33 -08:00
{% if login_gov_enabled %}
2023-10-18 15:18:37 -07:00
<p>
2023-11-02 14:10:22 -07:00
Test login.gov authentication:
2023-10-18 15:18:37 -07:00
<a class="usa-link" href="https://idp.int.identitysandbox.gov/openid_connect/authorize?acr_values=http%3A%2F%2Fidmanagement.gov%2Fns%2Fassurance%2Fial%2F1&client_id=urn:gov:gsa:openidconnect.profiles:sp:sso:gsa:test_notify_gov&nonce=01234567890123456789012345&prompt=select_account&redirect_uri=http://localhost:6012/sign-in&response_type=code&scope=openid+email&state=abcdefghijklmnopabcdefghijklmnop">Login.gov</a>.
</p>
2023-11-02 14:10:22 -07:00
{% endif %}
{% endif %}
2018-09-19 12:39:36 +01:00
{% call form_wrapper(autocomplete=True) %}
2020-08-07 15:16:04 +01:00
{{ form.email_address(param_extensions={"autocomplete": "email"}) }}
{{ form.password(param_extensions={"autocomplete": "current-password"}) }}
{{ page_footer("Continue", secondary_link=password_reset_url, secondary_link_text="Forgot your password?") }}
2018-09-19 12:39:36 +01:00
{% endcall %}
</div>
</div>
2015-12-04 14:50:23 +00:00
{% endblock %}