diff options
author | nashe <thomas@chauchefoin.fr> | 2017-12-23 21:07:30 +0100 |
---|---|---|
committer | nashe <thomas@chauchefoin.fr> | 2017-12-23 21:07:30 +0100 |
commit | ace3788763e40161b346757a5178bbe2cc6e7773 (patch) | |
tree | c01151134bbbbcc4afd8cd9a0b010f75eee8678e /admin/login.php | |
parent | 0979b67e1baf88d7534d39c9744801a54d487b7f (diff) | |
download | planet-ace3788763e40161b346757a5178bbe2cc6e7773.tar planet-ace3788763e40161b346757a5178bbe2cc6e7773.tar.gz planet-ace3788763e40161b346757a5178bbe2cc6e7773.tar.bz2 planet-ace3788763e40161b346757a5178bbe2cc6e7773.tar.xz planet-ace3788763e40161b346757a5178bbe2cc6e7773.zip |
Give a session to the users
Diffstat (limited to 'admin/login.php')
-rwxr-xr-x | admin/login.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/admin/login.php b/admin/login.php index 3ba4d2b..a95e59f 100755 --- a/admin/login.php +++ b/admin/login.php @@ -1,10 +1,13 @@ <?php + +require_once __DIR__ . '/../app/app.php'; + if (isset($_POST['password'])) { + session_regenerate_id(); setcookie('auth',md5($_POST['password'])); header('Location: index.php'); } -require_once __DIR__ . '/../app/app.php'; $page_content = <<<FRAGMENT <form action="" method="post" class="login"> <fieldset> |