From 4ef6aafd3d390b5fb638b3c538a634884642e3ee Mon Sep 17 00:00:00 2001 From: candifloss Date: Sat, 12 Apr 2025 15:14:16 +0530 Subject: [PATCH] Fix: Footer - Add footer in login page - Re-style footer - Add `login.css` --- static/css/login.css | 38 ++++++++++++++++++++++++++++++++++++++ templates/footer.html | 22 +++++++++++----------- templates/login.html | 37 ++++++++++++++++++++----------------- 3 files changed, 69 insertions(+), 28 deletions(-) create mode 100644 static/css/login.css diff --git a/static/css/login.css b/static/css/login.css new file mode 100644 index 0000000..9f2b4f3 --- /dev/null +++ b/static/css/login.css @@ -0,0 +1,38 @@ +/* Login page specific styles */ +.login-page { + display: flex; + flex-direction: column; + min-height: 100vh; +} + +.login-container { + flex: 1; + display: flex; + width: 100%; +} + +.login-branding { + flex: 1; +} + +.login-form-wrapper { + flex: 1; + display: flex; + flex-direction: column; + min-height: 100vh; +} + +.login-form-container { + flex: 1; + display: flex; + justify-content: center; + align-items: center; + padding: 2rem; +} + +.login-footer { + padding: 1rem; + text-align: center; + background-color: #f8f9fa; + border-top: 1px solid #dee2e6; +} \ No newline at end of file diff --git a/templates/footer.html b/templates/footer.html index 1377810..6d7839a 100644 --- a/templates/footer.html +++ b/templates/footer.html @@ -1,12 +1,12 @@ -