All checks were successful
Docker Build & Push / build-and-push (push) Successful in 1m36s
11 lines
195 B
PHP
11 lines
195 B
PHP
<?php
|
|
if (session_status() === PHP_SESSION_NONE) {
|
|
session_start();
|
|
}
|
|
|
|
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
|
|
header("location: login.php");
|
|
exit;
|
|
}
|
|
?>
|