aboutsummaryrefslogtreecommitdiff
path: root/overview/public/script.js
blob: 3e56fc83fc8c2c8da2cf4010454b54fce066c6d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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];
        const fourth = document.querySelectorAll("a")[3];

        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";
            }
            if (response.superAdmin) {
                fourth.href = "/super";
                fourth.textContent = "Super-Duper-Admin-Spaß";
            }
        } else {
            document.querySelectorAll("div.pure-menu")[0].style.display = "none";
        }
    });