From 254d6243021a2c77e5fd1882e30e8f5ad5d2fe1c Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Sun, 31 Aug 2025 01:00:56 +0000 Subject: [PATCH] Update web/templates/tools/login_attempts.html --- web/templates/tools/login_attempts.html | 106 +++++++++++++++++++++--- 1 file changed, 93 insertions(+), 13 deletions(-) diff --git a/web/templates/tools/login_attempts.html b/web/templates/tools/login_attempts.html index 45ae829..eca1589 100644 --- a/web/templates/tools/login_attempts.html +++ b/web/templates/tools/login_attempts.html @@ -6,6 +6,21 @@

Security · Login Attempts for the last 7 Days

+ +
+
+
+ Total: +
+
+ Successes: +
+
+ Success rate: +
+
+
+
@@ -18,16 +33,23 @@ Status - + {% for a in attempts %} - + {{ a.timestamp|date:"Y-m-d H:i:s" }} {{ a.username }} {% if a.ip_address %} - + {{ a.ip_address }} {% else %} @@ -36,15 +58,10 @@ {% if a.success %} - - Success - + Success {% else %} - - Failed - + Failed + {% endif %} @@ -61,4 +78,67 @@
+ + + + + + {% endblock %} \ No newline at end of file