diff options
author | LarsVomMars | 2021-01-30 17:15:53 +0100 |
---|---|---|
committer | LarsVomMars | 2021-01-30 17:15:53 +0100 |
commit | 1184d47a788ae3320f90de241bf85cc4fc546f97 (patch) | |
tree | 3b49f7e8d3c1100b1b91c9262e68c1a054606f11 /auth/public/script.js | |
parent | 96ccd0fb557fe226999d92a5d8688e469f6beb9a (diff) |
Auth QOL changes
Diffstat (limited to 'auth/public/script.js')
-rw-r--r-- | auth/public/script.js | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/auth/public/script.js b/auth/public/script.js index b50bf9b..fd1fb3a 100644 --- a/auth/public/script.js +++ b/auth/public/script.js @@ -2,5 +2,25 @@ loggedIn(); async function loggedIn() { const resp = await fetch("api/status"); - if (!(await resp.json())["loggedIn"]) location.redirect("/"); + const res = await resp.json(); + if (res.loggedIn && !window.location.pathname.endsWith("change.html")) window.location.replace("/"); + else if (!res.loggedIn && window.location.pathname.endsWith("change.html")) window.location.replace("/"); } + +const form = document.querySelector("form"); +form.addEventListener("submit", async e => { + e.preventDefault(); + const method = e.target.method; + const url = e.target.action; + const rawBody = {}; + for (const input of form.querySelectorAll("input")) + rawBody[input.name] = input.value; + const body = JSON.stringify(rawBody); + const resp = await fetch(url, { method, body, headers: { "Content-Type": "application/json" } }); + const res = await resp.json(); + if (!res.success) alert(res.message); + else { + const ref = new URL(location.href).searchParams.get("ref"); + window.location.replace(ref); + } +});
\ No newline at end of file |