72 lines
2.2 KiB
PHP
72 lines
2.2 KiB
PHP
<?php
|
|
session_start();
|
|
|
|
require_once 'db/config.php';
|
|
|
|
// If already logged in, redirect to admin panel
|
|
if (isset($_SESSION['is_admin']) && $_SESSION['is_admin'] === true) {
|
|
header('Location: admin.php');
|
|
exit;
|
|
}
|
|
|
|
$error_message = '';
|
|
|
|
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
|
$username = $_POST['username'] ?? '';
|
|
$password = $_POST['password'] ?? '';
|
|
|
|
if ($username === ADMIN_USER && password_verify($password, ADMIN_PASS_HASH)) {
|
|
$_SESSION['is_admin'] = true;
|
|
session_write_close(); // Force session to save before redirect
|
|
header('Location: admin.php');
|
|
exit;
|
|
} else {
|
|
$error_message = 'Credenziali non valide. Riprova.';
|
|
}
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Admin Login</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
background-color: #f8f9fa;
|
|
}
|
|
.login-container {
|
|
max-width: 400px;
|
|
padding: 2rem;
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 0.5rem;
|
|
background-color: #fff;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<h2 class="text-center mb-4">Accesso Admin</h2>
|
|
<?php if ($error_message): ?>
|
|
<div class="alert alert-danger"><?php echo htmlspecialchars($error_message); ?></div>
|
|
<?php endif; ?>
|
|
<form method="post" action="login.php">
|
|
<div class="mb-3">
|
|
<label for="username" class="form-label">Nome Utente</label>
|
|
<input type="text" class="form-control" id="username" name="username" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="password" class="form-label">Password</label>
|
|
<input type="password" class="form-control" id="password" name="password" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary w-100">Accedi</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|