From 8407f5605b22830285f5ede41a7486ec46ffb1e2 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Tue, 11 Jun 2024 11:06:13 -0700 Subject: [PATCH] add back signin.html and removed login banner --- app/templates/views/signin.html | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 app/templates/views/signin.html diff --git a/app/templates/views/signin.html b/app/templates/views/signin.html new file mode 100644 index 000000000..c2c6ebe1d --- /dev/null +++ b/app/templates/views/signin.html @@ -0,0 +1,37 @@ +{% 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 %} + +
+
+ {% if again %} +

You need to sign in again

+ {% if other_device %} +

+ We signed you out because you logged in to Notify on another device. +

+ {% else %} +

+ We signed you out because you have not used Notify for a while. +

+ {% endif %} + Sign in with Login.gov + {% else %} +

Sign in

+

Access your Notify.gov account by signing in with Login.gov:

+ Sign in with Login.gov + {% endif %} +
+
+ +{% endblock %}