From b1d1a09254793636b202340d652ace5b6f03f950 Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 28 May 2026 09:36:17 -0400 Subject: [PATCH] App Home... --- protected/src/Classes/Logic/IndexAuthContainer.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/protected/src/Classes/Logic/IndexAuthContainer.php b/protected/src/Classes/Logic/IndexAuthContainer.php index 07fd6fd..bb01b02 100644 --- a/protected/src/Classes/Logic/IndexAuthContainer.php +++ b/protected/src/Classes/Logic/IndexAuthContainer.php @@ -21,10 +21,10 @@ class IndexAuthContainer $auth = '
'; $loggedin = $_SESSION['email'] ?? false; if ($loggedin === false) { - $auth .= ''; - $auth .= 'Register'; + $auth .= ''; + $auth .= 'Register'; } else { - $auth .= ''; + $auth .= ''; } $auth .= '
'; return $auth;