blob: 6e5652cc0377d0267ec332aca957ae4073b12a32 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<?php
/* Your password */
$password = 'KONAMI';
if (empty($_COOKIE['password']) || $_COOKIE['password'] !== $password) {
// Password not set or incorrect. Send to login.php.
header('Location: login.php');
exit;
}
?>
|