mirror of
https://github.com/Foltik/Shimapan
synced 2025-04-22 15:57:11 -04:00
6 lines
103 B
Plaintext
6 lines
103 B
Plaintext
<?php session_start();
|
|
if(!isset($_SESSION['id'])){
|
|
header('Location: ../login/');
|
|
exit();
|
|
}
|
|
?> |