11 lines
186 B
PHP
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;
|
|
}
|
|
?>
|