itskp-odense/Backend/controller/accessControl.php

7 lines
116 B
PHP
Raw Permalink Normal View History

<?php
session_start();
if (!isset($_SESSION['token'])) {
2021-06-08 13:07:04 +00:00
header("location: ../index.php?login=notloggedin");
}