1
0
mirror of https://github.com/beestat/app.git synced 2025-05-24 02:14:03 -04:00

Slightly adjusted app welcome page background color

This commit is contained in:
Jon Ziebell 2023-10-20 08:37:55 -04:00
parent ae74fd4f02
commit a096d2654a

View File

@ -3,7 +3,10 @@
require '../api/cora/setting.php'; require '../api/cora/setting.php';
$setting = cora\setting::get_instance(); $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) { if(isset($_COOKIE['session_key']) === true) {
header('Location: https://app.beestat.io/'); header('Location: https://app.beestat.io/');
die(); die();
@ -49,7 +52,7 @@
body { body {
padding: 0; padding: 0;
margin: 0; margin: 0;
background: #2f3d44; background: #37474f;
font-family: Montserrat; font-family: Montserrat;
overflow-x: hidden; overflow-x: hidden;
} }