diff options
author | Marvin Borner | 2020-10-10 23:04:31 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-10 23:04:31 +0200 |
commit | d32ffe5d0e44f591adcf692b98a43efb5e65187a (patch) | |
tree | 25733d3e2a3829315f2cf50cf3f817cea4221e08 /overview/public/script.js | |
parent | 5017a820ab9c0d49b3db370421f9856c8b709647 (diff) |
Formatting
Diffstat (limited to 'overview/public/script.js')
-rw-r--r-- | overview/public/script.js | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/overview/public/script.js b/overview/public/script.js index 68b2d5a..d7e5b71 100644 --- a/overview/public/script.js +++ b/overview/public/script.js @@ -1,22 +1,23 @@ -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]; +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.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 = "Admin"; - } - } else { - document.querySelectorAll("div.pure-menu")[0].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 = "Admin"; + } + } else { + document.querySelectorAll("div.pure-menu")[0].style.display = "none"; + } + }); |