Redirect to dashboard when accessing frontpage while logged in

This commit is contained in:
Reimar 2025-04-01 13:39:13 +02:00
parent 0c532fb979
commit 96fe8a4cdf
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268
2 changed files with 11 additions and 0 deletions
frontend

View File

@ -4,6 +4,13 @@
<meta charset="UTF-8" />
<title>Temperature Alarm</title>
<link rel="stylesheet" href="/styles/frontpage.css">
<script type="module">
import { isLoggedIn } from "./shared/utils.js";
if (isLoggedIn()) {
location.href = "/home";
}
</script>
</head>
<body>
<main>

View File

@ -50,3 +50,7 @@ export function getUser() {
return JSON.parse(localStorage.getItem("user"));
}
export function isLoggedIn() {
return document.cookie.match(/\bauth-token=/) && localStorage.getItem("user");
}