46 lines
1,008 B
PHP
46 lines
1,008 B
PHP
<?php
|
|
include "includes/security.php";
|
|
global $users;
|
|
|
|
if ((!isset($_POST["nome"]) || !isset($_POST["password"]) and !isset($_SESSION["loggedIn"]))) {
|
|
$_SESSION["error"] = true;
|
|
header("Location: index.php");
|
|
exit();
|
|
}
|
|
|
|
if (!isset($_SESSION["loggedIn"]) || $_SESSION["loggedIn"] !== true) {
|
|
foreach ($users as $nome => $password) {
|
|
if (strcmp($nome, $_POST["nome"]) == 0 and strcmp($password, $_POST["password"]) == 0) {
|
|
$_SESSION["nome"] = $nome;
|
|
$_SESSION["loggedIn"] = true;
|
|
}
|
|
}
|
|
|
|
if (!isset($_SESSION["loggedIn"])) {
|
|
$_SESSION["error"] = true;
|
|
header("Location: index.php");
|
|
exit();
|
|
}
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE HTML>
|
|
<html lang="it">
|
|
|
|
<head>
|
|
<title>Login</title>
|
|
<?php require "includes/head.php" ?>
|
|
</head>
|
|
|
|
<body>
|
|
<?php require "includes/navbar.php" ?>
|
|
|
|
<div class="container">
|
|
<h1>Home Page</h1>
|
|
<h2>Benvenuto <?= $_SESSION["nome"] ?></h2>
|
|
</div>
|
|
|
|
<?php require "includes/footer.php" ?>
|
|
|
|
</body>
|
|
</html>
|