From a096d2654af2b51178d5ebd140f5ce8ecf561752 Mon Sep 17 00:00:00 2001 From: Jon Ziebell Date: Fri, 20 Oct 2023 08:37:55 -0400 Subject: [PATCH] Slightly adjusted app welcome page background color --- welcome/index.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/welcome/index.php b/welcome/index.php index 2e99f6a..a97ca52 100644 --- a/welcome/index.php +++ b/welcome/index.php @@ -3,7 +3,10 @@ require '../api/cora/setting.php'; $setting = cora\setting::get_instance(); - // If you're already logged in + /** + * Skip this page if you're already logged. Note for the demo this does not + * work as that cookie is set for demo.beestat.io. + */ if(isset($_COOKIE['session_key']) === true) { header('Location: https://app.beestat.io/'); die(); @@ -49,7 +52,7 @@ body { padding: 0; margin: 0; - background: #2f3d44; + background: #37474f; font-family: Montserrat; overflow-x: hidden; }