diff options
author | Marvin Borner | 2020-10-10 18:37:26 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-10 18:37:26 +0200 |
commit | 16ebbb932c0b780c11d3e574bc24a515eb095f5f (patch) | |
tree | 1542c555ff8772f20bb4a280dffb5995eaf7103f /overview/public/script.js | |
parent | 00409448b34265d976485095eadc579bde5cab57 (diff) |
Fixed navbar if not logged in
Diffstat (limited to 'overview/public/script.js')
-rw-r--r-- | overview/public/script.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/overview/public/script.js b/overview/public/script.js new file mode 100644 index 0000000..be058b7 --- /dev/null +++ b/overview/public/script.js @@ -0,0 +1,22 @@ +fetch("/auth/api/status").then(response => response.json()).then(response => { + console.log(response); + const first = document.querySelectorAll("a")[0]; + const second = document.querySelectorAll("a")[1]; + const third = document.querySelectorAll("a")[2]; + + if (!response.admin) + third.style.display = "none"; + + if (response.loggedIn) { + first.href = "/auth/change.html"; + first.innerText = "Passwort ändern"; + second.href = "/auth/api/logout"; + second.innerText = "Logout"; + if (response.admin) { + third.href = "/admin"; + third.innerText = "Administration"; + } + } else { + document.querySelectorAll("div.pure-menu")[0].style.display = "none"; + } +}); |