first commit

This commit is contained in:
2025-11-20 14:44:35 +08:00
commit 91f70ed69c
839 changed files with 207385 additions and 0 deletions
Executable
+9
View File
@@ -0,0 +1,9 @@
<?php
require_once 'config/config.php';
if (is_logged_in()) {
redirect('dashboard.php');
} else {
redirect('login.php');
}
?>