From 86a33131217b187a2ccc7888dbda2f0a8236ec7c Mon Sep 17 00:00:00 2001 From: stilbruch Date: Wed, 23 Mar 2022 11:41:30 -0500 Subject: Fix templates --- app/templates/base/home.html | 4 + app/templates/base/index.html | 70 +---------------- app/templates/user/login.html | 162 ++++++++++++--------------------------- app/templates/user/register.html | 150 +++++++++++------------------------- 4 files changed, 101 insertions(+), 285 deletions(-) (limited to 'app') diff --git a/app/templates/base/home.html b/app/templates/base/home.html index e69de29..357a399 100644 --- a/app/templates/base/home.html +++ b/app/templates/base/home.html @@ -0,0 +1,4 @@ +{% extends 'base.html' %} + +{% block content %} +{% endblock %} diff --git a/app/templates/base/index.html b/app/templates/base/index.html index 70f52e8..357a399 100644 --- a/app/templates/base/index.html +++ b/app/templates/base/index.html @@ -1,68 +1,4 @@ - - - - - +{% extends 'base.html' %} - - - - Strenghty 💪 - - - - - - - {% block content %}{% endblock %} -

This is the index page. - - - - +{% block content %} +{% endblock %} diff --git a/app/templates/user/login.html b/app/templates/user/login.html index b0634bb..7a671c1 100644 --- a/app/templates/user/login.html +++ b/app/templates/user/login.html @@ -1,112 +1,50 @@ - - - - - - - - - - Strenghty 💪 - - - -

- - - {% block content %}{% endblock %} -
-
-
-
-
-
-
-

Log in

-
-
- -
- - - - -
-
-
- -
- - - - -
-
-
- -
-
- -
-
-
-
-
-
-
-
-
- - - +{% extends 'base.html' %} + +{% block content %} +
+
+
+
+
+
+
+

Log in

+
+
+ +
+ + + + +
+
+
+ +
+ + + + +
+
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+{% endblock %} diff --git a/app/templates/user/register.html b/app/templates/user/register.html index c682ef1..dc61204 100644 --- a/app/templates/user/register.html +++ b/app/templates/user/register.html @@ -1,106 +1,44 @@ - - - - - - - - - - Strenghty 💪 - - - - - - - {% block content %}{% endblock %} -
-
-
-
-
-
-
-

Sign up

-
-
- -
- - - - -
-
-
- -
- - - - -
-
-
- -
-
-
-
-
-
-
-
-
- - - +{% extends 'base.html' %} + +{% block content %} +
+
+
+
+
+
+
+

Sign up

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