From 53b84f7ede1ad26e5111cd6da9c13042d98a290b Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Sun, 4 Oct 2020 00:52:42 +0200 Subject: Password change --- auth/public/script.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 auth/public/script.js (limited to 'auth/public/script.js') diff --git a/auth/public/script.js b/auth/public/script.js new file mode 100644 index 0000000..b50bf9b --- /dev/null +++ b/auth/public/script.js @@ -0,0 +1,6 @@ +loggedIn(); + +async function loggedIn() { + const resp = await fetch("api/status"); + if (!(await resp.json())["loggedIn"]) location.redirect("/"); +} -- cgit v1.2.3