Basic Login

- Default password is "123456"
- there is a warning on the login page, when the default password is active
- to set ne new password, use the reset_password.sh in the config folder (./reset_password.sh newpassword)
- the password is stored as a sha256 hash
- the script creates a backup of the config file, just in case
This commit is contained in:
leiweibau
2022-07-22 21:21:43 +02:00
parent b855fca9be
commit fec58bf028
9 changed files with 188 additions and 25 deletions

View File

@@ -8,6 +8,14 @@
#--------------------------------------------------------------------------- -->
<?php
session_start();
if ($_SESSION["login"] != 1)
{
header('Location: /pialert/index.php');
exit;
}
require 'php/templates/header.php';
require 'php/templates/graph.php';
?>