aboutsummaryrefslogtreecommitdiff
path: root/interface/public/router.js
blob: 23f811576bfc07e1d7eea6ec47835f44cb383c8d (plain)
1
2
3
4
5
6
7
function route(page) {
    if (!localStorage.getItem("token")) {
        $("#loginButton").click();
    } else {
        window.location.href = page;
    }
}