Files
lootjes/public/index.php
2025-11-12 10:17:30 +01:00

11 lines
145 B
PHP

<?php
session_start();
if (isset($_SESSION['user'])) {
header('Location: dashboard.php');
exit;
}
header('Location: login.php');
exit;