Login and Auth

This commit is contained in:
Hickmeister
2025-01-04 02:05:59 +00:00
parent b1be0cb849
commit d204dd2b99
8 changed files with 577 additions and 1807 deletions

View File

@@ -0,0 +1,7 @@
<?php
session_start();
if (!isset($_SESSION['user_id'])) {
header("Location: /login.html");
exit();
}
?>