Files
willes_AI/inc/php/auth.php

9 lines
115 B
PHP
Raw Normal View History

2025-07-17 01:05:46 +02:00
<?php
session_start();
if (!isset($_SESSION['user_id'])) {
header("Location: /landing.php");
exit();
}
?>