aboutsummaryrefslogtreecommitdiff
path: root/auth/public/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'auth/public/script.js')
-rw-r--r--auth/public/script.js22
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