From 6dbdf89760718a6205a13568405b47904ca3a666 Mon Sep 17 00:00:00 2001 From: billz Date: Tue, 21 Jan 2025 00:30:40 -0800 Subject: [PATCH] Add DisplayLogin() page handler --- includes/page_actions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/page_actions.php b/includes/page_actions.php index 2e406bf8..c9649792 100755 --- a/includes/page_actions.php +++ b/includes/page_actions.php @@ -70,6 +70,9 @@ function handleCorePageAction(string $page, array &$extraFooterScripts): void case "/about": DisplayAbout(); break; + case "/login": + DisplayLogin(); + break; default: DisplayDashboard($extraFooterScripts); }