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 ++++++++++++++++++++++++++++++++++++ app/templates/base.html | 70 +++++++++++++++++++++++++++++++++++++++ app/templates/index.html | 50 ++++++++++++++++++++++++++++ app/templates/main/dashboard.html | 19 +++++++++++ 5 files changed, 265 insertions(+) create mode 100644 app/templates/auth/login.html create mode 100644 app/templates/auth/signup.html create mode 100644 app/templates/base.html create mode 100644 app/templates/index.html create mode 100644 app/templates/main/dashboard.html (limited to 'app/templates') 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 %} + + diff --git a/app/templates/base.html b/app/templates/base.html new file mode 100644 index 0000000..dfe0b87 --- /dev/null +++ b/app/templates/base.html @@ -0,0 +1,70 @@ + + + + + {% block title %} {% endblock %} - Flask-App + + + + + + {% block content %}{% endblock %} + + + diff --git a/app/templates/index.html b/app/templates/index.html new file mode 100644 index 0000000..5ea3220 --- /dev/null +++ b/app/templates/index.html @@ -0,0 +1,50 @@ +{% extends 'base.html' %} + +{% block content %} + +
+ + +
+
+ Your Company + +

RSS Anything

+

Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo. Elit sunt amet fugiat veniam occaecat fugiat aliqua.

+ +
+
+
+ App screenshot +
+
+
+
+ + +{% endblock %} diff --git a/app/templates/main/dashboard.html b/app/templates/main/dashboard.html new file mode 100644 index 0000000..d2022c5 --- /dev/null +++ b/app/templates/main/dashboard.html @@ -0,0 +1,19 @@ +{% extends 'base.html' %} + +{% block content %} +
+
+
+
+

{% block title %}Dashboard{% endblock %}

+

Hi {{name}} +

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