From 8d94d62c8549e21bf374c62e12c6976046e22786 Mon Sep 17 00:00:00 2001 From: Florian Hartmann Date: Sun, 10 Jan 2021 22:15:03 +0100 Subject: [PATCH] small (code) style optimization --- core/static/core/style.css | 1 + core/templates/registration/logged_out.html | 4 +++- core/templates/registration/login.html | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/core/static/core/style.css b/core/static/core/style.css index 0bd06b5..4ba4d11 100644 --- a/core/static/core/style.css +++ b/core/static/core/style.css @@ -36,6 +36,7 @@ h1, p, a { } h1 { + margin-bottom: 12px; font-size: 1.3rem; font-weight: bold; } diff --git a/core/templates/registration/logged_out.html b/core/templates/registration/logged_out.html index 7448f19..5daa37c 100644 --- a/core/templates/registration/logged_out.html +++ b/core/templates/registration/logged_out.html @@ -7,5 +7,7 @@ {% endblock %} {% block content %} - You have been logged out. + +

logged out, cya 👋

+ {% endblock %} diff --git a/core/templates/registration/login.html b/core/templates/registration/login.html index fc6a740..a795899 100644 --- a/core/templates/registration/login.html +++ b/core/templates/registration/login.html @@ -5,6 +5,7 @@ {% endblock %} {% block content %} +
{% csrf_token %} @@ -19,4 +20,5 @@
+ {% endblock %}