From 02219a9aa262e95f4100a77890f94cef45ddce9a Mon Sep 17 00:00:00 2001 From: MCHost Date: Sun, 22 Jun 2025 21:33:47 -0400 Subject: [PATCH] add a small delay when logging in to reduce confusion --- includes/auth.js | 80 +++++++++++++++++++++++++----------------------- 1 file changed, 42 insertions(+), 38 deletions(-) diff --git a/includes/auth.js b/includes/auth.js index b8186af..aa3a8fe 100644 --- a/includes/auth.js +++ b/includes/auth.js @@ -255,47 +255,51 @@ export function handleAutoLogin(req, res) { // Secure API key storage with additional client-side security and debugging res.send(` - - - - Secure Auto Login - - - - - - -
- -

Securely logging in...

-
- - - - `); + }, 2000); + } + })(); + + + + `); }); } \ No newline at end of file