From d0f8e8f2210599f15bd8052cfb5140ab2adbb449 Mon Sep 17 00:00:00 2001 From: Xevion Date: Sun, 27 Mar 2022 00:23:29 -0500 Subject: [PATCH] Add logout button to header --- templates/layouts/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/layouts/header.html b/templates/layouts/header.html index 3a7eabd..93815f4 100644 --- a/templates/layouts/header.html +++ b/templates/layouts/header.html @@ -3,7 +3,7 @@
{% if current_user.is_authenticated %} - Logged in as {{ current_user.username }} + Logged in as {{ current_user.username }} | Logout {% else %} Login or Sign-up! {% endif %}