1e versie

This commit is contained in:
2025-11-12 10:17:30 +01:00
commit 6b5f9abec7
10 changed files with 255 additions and 0 deletions

10
public/index.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
session_start();
if (isset($_SESSION['user'])) {
header('Location: dashboard.php');
exit;
}
header('Location: login.php');
exit;