prepare("SELECT * FROM admins WHERE username = ? AND is_active = 1 LIMIT 1");
$stmt->execute([$username]);
$admin = $stmt->fetch();
if ($admin && password_verify($password, $admin['password_hash'])) {
session_regenerate_id(true);
$_SESSION['admin_id'] = (int)$admin['id'];
$_SESSION['admin_username'] = $admin['username'];
$_SESSION['admin_name'] = $admin['nama'];
unset($_SESSION['csrf_token']);
header('Location: index.php');
exit;
}
$error = 'Username atau password salah.';
}
}
?>
Admin Area
Masuk ke WebGIS Peduli
Gunakan akun admin untuk mengelola data peta, warga, dan rumah ibadah.
= htmlspecialchars($error, ENT_QUOTES, 'UTF-8') ?>
Akun awal: admin / admin123