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/signup.html | 65 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 app/templates/auth/signup.html (limited to 'app/templates/auth/signup.html') 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