From bce7add2b4c9e8e0182db1ff6b2dadec2c14ca50 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 15 Dec 2022 16:23:54 -0700 Subject: Fix login form errors not appearing Fixes #175 --- static/css/style.css | 10 ++++++++++ templates/auth/login.html | 3 +++ users/views/auth.py | 7 +++++++ 3 files changed, 20 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 9b509b8..4160d26 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -221,6 +221,10 @@ header menu a.identity { width: 250px; } +body.no-sidebar header menu a.identity { + display: none; +} + header menu a.identity i { display: inline-block; vertical-align: middle; @@ -289,11 +293,13 @@ nav a i { .columns { display: flex; align-items: stretch; + justify-content: center; } .left-column { flex-grow: 1; width: 300px; + max-width: 700px; padding: 15px; } @@ -315,6 +321,10 @@ nav a i { border-radius: 0 0 5px 0; } +body.no-sidebar .right-column { + display: none; +} + .right-column h2 { background: var(--color-highlight); padding: 8px 10px; diff --git a/templates/auth/login.html b/templates/auth/login.html index 96c0e98..a0588a9 100644 --- a/templates/auth/login.html +++ b/templates/auth/login.html @@ -2,11 +2,14 @@ {% block title %}Login{% endblock %} +{% block body_class %}no-sidebar{% endblock %} + {% block content %}