Files
test/public/dashboard.html
2026-02-21 19:39:33 +09:00

30 lines
664 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Dashboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Dashboard</h1>
<p>Login erfolgreich 🎉</p>
<button id="logout">Logout</button>
</div>
<script>
const token = localStorage.getItem("token")
if (!token) {
window.location.href = "login.html"
}
document.getElementById("logout").addEventListener("click", () => {
localStorage.removeItem("token")
window.location.href = "login.html"
})
</script>
</body>
</html>