From c13b22234be664a3ebb5dc1ac928f37ad937ac6e Mon Sep 17 00:00:00 2001 From: Bryce Date: Sun, 3 Aug 2025 22:39:10 -0700 Subject: [PATCH] login works and looks good --- app/templates/auth/login.html | 116 ++++++++---------- app/templates/auth/signup.html | 217 ++++++++++++++++----------------- 2 files changed, 159 insertions(+), 174 deletions(-) diff --git a/app/templates/auth/login.html b/app/templates/auth/login.html index 000c4d2..b482cf4 100644 --- a/app/templates/auth/login.html +++ b/app/templates/auth/login.html @@ -1,5 +1,5 @@ - + @@ -7,74 +7,64 @@ + - -
-
-
-
-

- - Email Organizer -

-

Sign in to your account

-
+ +
+
+
+

+ + Email Organizer +

+

Sign in to your account

+
+ + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for category, message in messages %} +
+ + + + {{ message }} +
+ {% endfor %} + {% endif %} + {% endwith %} + +
+ - {% with messages = get_flashed_messages(with_categories=true) %} - {% if messages %} - {% for category, message in messages %} -
- - - - {{ message }} -
- {% endfor %} - {% endif %} - {% endwith %} + - -
- - -
- -
- - -
- -
- -
- -
- -
-
+ -
-

- Don't have an account? - - Sign up - -

-
+ + + +
+

+ Don't have an account? + + Sign up + +

diff --git a/app/templates/auth/signup.html b/app/templates/auth/signup.html index f569f29..04b1968 100644 --- a/app/templates/auth/signup.html +++ b/app/templates/auth/signup.html @@ -8,121 +8,116 @@ + - -
-
-
-
-

- - Email Organizer -

-

Create your account

-
- - {% with messages = get_flashed_messages(with_categories=true) %} - {% if messages %} - {% for category, message in messages %} -
- - - - {{ message }} -
- {% endfor %} - {% endif %} - {% endwith %} - - {% if errors %} -
- - - - Please fix the following errors: -
-
    - {% for error in errors %} -
  • • {{ error }}
  • - {% endfor %} -
+ +
+
+
+

+ + Email Organizer +

+

Create your account

+
+ + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for category, message in messages %} +
+ + + + {{ message }} +
+ {% endfor %} {% endif %} - -
-
- - -
- -
- - -
- -
- - -
- -
- - - -
- -
- - -
- -
- -
- -
- -
-
- -
-

- Already have an account? - - Sign in - -

+ {% endwith %} + + {% if errors %} +
+ + + + Please fix the following errors:
+
    + {% for error in errors %} +
  • • {{ error }}
  • + {% endfor %} +
+ {% endif %} + +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + + + Password must be at least 8 characters with uppercase, lowercase, and numbers + +
+ +
+ + +
+ +
+ +
+ + +
+ +
+

+ Already have an account? + + Sign in + +