30 lines
664 B
HTML
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> |