From cdd6925fcb05719ae19feb7e8743c45179c03ebe Mon Sep 17 00:00:00 2001 From: Hans-Christian Payer Date: Thu, 21 May 2026 18:13:14 +0200 Subject: [PATCH] logout verhalten verbessert --- app/templates/base.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/templates/base.html b/app/templates/base.html index 55a413c..cd61f15 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -22,6 +22,8 @@ .log .level-warning { color: #d97706; } form p { margin: 0.75rem 0; } label { display: block; font-weight: 600; } + .btn-link { background: none; border: none; padding: 0; color: #0366d6; cursor: pointer; font: inherit; text-decoration: none; } + .btn-link:hover { text-decoration: underline; } @@ -31,7 +33,11 @@ Neuer Serienbrief {% if user.is_authenticated %} - {{ user.username }} · Abmelden + {{ user.username }} · +
+ {% csrf_token %} + +
{% endif %}