Skip to content

Commit

Permalink
HOTFIX removed log-in error
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamBasly authored Nov 19, 2024
1 parent 77c7999 commit a2211be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mainlab.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<script>
document.addEventListener("DOMContentLoaded",
function () {
if (sessionStorage.getItem('isLoggedIn') !== 'true') {
if (sessionStorage.getItem('isLoggedIn') == 'true') {
alert("Sie müssen sich anmelden, um auf diese Seite zugreifen zu können.");
window.location.href = "index.html";
// Pfad zur Anmeldeseite
Expand Down

0 comments on commit a2211be

Please sign in to comment.