Initial setup, not working yet

This commit is contained in:
2026-06-12 15:08:50 +03:00
parent 2aba4b03a4
commit a467754d6c
37 changed files with 1211 additions and 4 deletions

11
frontend/index.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
$token = $_COOKIE["token"] ?? null;
if ($token) {
header("Location: items.php");
} else {
header("Location: login.php");
}
exit;