From 3743f7056dcdbe1a16a00418ea10ebef2669cf61 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 15 Nov 2023 20:34:41 -0700 Subject: initial structure --- app/templates/auth/login.html | 61 +++++++++++++++++++++++++++++++++++++++ app/templates/auth/signup.html | 65 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 126 insertions(+) create mode 100644 app/templates/auth/login.html create mode 100644 app/templates/auth/signup.html (limited to 'app/templates/auth') diff --git a/app/templates/auth/login.html b/app/templates/auth/login.html new file mode 100644 index 0000000..aa9f7d6 --- /dev/null +++ b/app/templates/auth/login.html @@ -0,0 +1,61 @@ +{% extends 'base.html' %} + +{% block content %} + +{% with messages = get_flashed_messages() %} + {% if messages %} +
+
+
+ +
+
+

{{ messages[0] }}

+
+
+
+ {% endif %} +{% endwith %} +
+
+ Your Company +

Sign in to your account

+
+ +
+
+
+ +
+ +
+
+ +
+
+ + +
+
+ +
+
+
+ +
+
+ +
+
+
+
+{% endblock %} + diff --git a/app/templates/auth/signup.html b/app/templates/auth/signup.html new file mode 100644 index 0000000..666bdeb --- /dev/null +++ b/app/templates/auth/signup.html @@ -0,0 +1,65 @@ +{% extends 'base.html' %} + +{% block content %} + +{% with messages = get_flashed_messages() %} + {% if messages %} +
+
+
+ +
+
+

{{ messages[0] }}

+
+
+
+ {% endif %} +{% endwith %} + + +
+
+ Your Company +

Register for an Account

+
+ +
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+ + +
+
+ +
+
+
+ +
+
+
+
+{% endblock %} + + -- cgit v1.2.3