From d16c6760fe0c3ad00d3573d6186100244f95812a Mon Sep 17 00:00:00 2001 From: Philippe Loctaux Date: Mon, 13 Mar 2023 23:40:37 +0100 Subject: [PATCH] template: renamed auth/sign_in to oauth/authorize, footer is pushed to bottom of page --- .../templates/pages/auth/sign_in.html.tera | 55 ------------------ .../templates/pages/oauth/authorize.html.tera | 57 +++++++++++++++++++ 2 files changed, 57 insertions(+), 55 deletions(-) delete mode 100644 crates/ezidam/templates/pages/auth/sign_in.html.tera create mode 100644 crates/ezidam/templates/pages/oauth/authorize.html.tera diff --git a/crates/ezidam/templates/pages/auth/sign_in.html.tera b/crates/ezidam/templates/pages/auth/sign_in.html.tera deleted file mode 100644 index c624f8b..0000000 --- a/crates/ezidam/templates/pages/auth/sign_in.html.tera +++ /dev/null @@ -1,55 +0,0 @@ -{% extends "base" %} - -{% block page %} - - -
-
-
- {% include "utils/logo" %} -
- - {% if flash %} - - {% endif %} - -
-
-
-

Sign in

-

With your {{ business_name }} account

-
-
-
- - -
-
- -
- -
-
- -
-
-
- - {% include "shell/footer" %} -
-
- - - - - -{% endblock page %} diff --git a/crates/ezidam/templates/pages/oauth/authorize.html.tera b/crates/ezidam/templates/pages/oauth/authorize.html.tera new file mode 100644 index 0000000..58ead7a --- /dev/null +++ b/crates/ezidam/templates/pages/oauth/authorize.html.tera @@ -0,0 +1,57 @@ +{% extends "base" %} + +{% block page %} + + +
+
+
+
+ {% include "utils/logo" %} +
+ + {% if flash %} + + {% endif %} + +
+
+
+

Sign in

+

With your {{ business_name }} account

+
+
+
+ + +
+
+ +
+ +
+
+ +
+
+
+ +
+ {% include "shell/footer" %} +
+
+ + + + + +{% endblock page %}