mirror of
https://github.com/anatolykopyl/file-directory.git
synced 2026-03-26 12:54:30 +00:00
10 lines
174 B
PHP
10 lines
174 B
PHP
<?php
|
|
$password = $_POST['password'];
|
|
|
|
if ($password == "pass") {
|
|
session_start();
|
|
$_SESSION['loggedin'] = true;
|
|
}
|
|
|
|
header('Location: index.php');
|
|
?>
|