Files
territory-assigner/login.php
2025-12-06 18:23:43 +01:00

74 lines
2.1 KiB
PHP

<?php
/**
* Pagina di Login
* Territory Manager
*/
require_once 'config.php';
require_once 'functions.php';
// Se già loggato, redirect alla home
if (isLoggedIn()) {
header('Location: index.php');
exit;
}
$error = '';
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$username = sanitize($_POST['username'] ?? '');
$password = $_POST['password'] ?? '';
if (empty($username) || empty($password)) {
$error = 'Inserire username e password';
} else {
if (login($username, $password)) {
header('Location: index.php');
exit;
} else {
$error = 'Credenziali non valide';
}
}
}
?>
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - <?php echo APP_NAME; ?></title>
<link rel="stylesheet" href="style.css">
</head>
<body class="login-page">
<div class="login-container">
<div class="login-box">
<h1><?php echo APP_NAME; ?></h1>
<p class="subtitle">Gestione Territori</p>
<?php if ($error): ?>
<div class="alert alert-error"><?php echo $error; ?></div>
<?php endif; ?>
<form method="POST" action="">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required autofocus
value="<?php echo isset($_POST['username']) ? htmlspecialchars($_POST['username']) : ''; ?>">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary btn-block">Accedi</button>
</form>
<div class="login-footer">
<small>Versione <?php echo APP_VERSION; ?></small>
</div>
</div>
</div>
</body>
</html>