vwlsupport/web/index.php
kknobloch b294ceeec8
2025-04-21 21:34:26 +02:00

11 lines
155 B
PHP

<?php
session_start();
if (!isset($_SESSION['user'])) {
header("Location: login.php");
exit;
}
require_once '../core/App.php';
$app = new App();