Files
ticket_system_nino/php/ticket_lock.php
sraffauf e2261ff0dd Locket system behind session variable
Created php script to redirect back to index.html if system is not
unlocked
2026-01-22 17:14:47 +01:00

11 lines
186 B
PHP

<?php
session_start();
if (!isset($_SESSION['unlocked'])) {
header("Location: ../index.html");
exit;
} else {
header("Location: ../pages/ticket_submit.html");
exit;
}
?>