aboutsummaryrefslogtreecommitdiff
path: root/auth/public
diff options
context:
space:
mode:
authorLarsVomMars2021-01-30 17:15:53 +0100
committerLarsVomMars2021-01-30 17:15:53 +0100
commit1184d47a788ae3320f90de241bf85cc4fc546f97 (patch)
tree3b49f7e8d3c1100b1b91c9262e68c1a054606f11 /auth/public
parent96ccd0fb557fe226999d92a5d8688e469f6beb9a (diff)
Auth QOL changes
Diffstat (limited to 'auth/public')
-rw-r--r--auth/public/change.html2
-rw-r--r--auth/public/index.html1
-rw-r--r--auth/public/script.js22
3 files changed, 23 insertions, 2 deletions
diff --git a/auth/public/change.html b/auth/public/change.html
index f703649..5652af4 100644
--- a/auth/public/change.html
+++ b/auth/public/change.html
@@ -41,7 +41,7 @@
minlength="8"
required
/>
- <button type="submit" class="pure-button pure-button-primary">Anmelden</button>
+ <button type="submit" class="pure-button pure-button-primary">Passwort ändern</button>
</fieldset>
</form>
diff --git a/auth/public/index.html b/auth/public/index.html
index 8273238..e0980d1 100644
--- a/auth/public/index.html
+++ b/auth/public/index.html
@@ -32,5 +32,6 @@
<button type="submit" class="pure-button pure-button-primary">Anmelden</button>
</fieldset>
</form>
+ <script src="script.js"></script>
</body>
</html>
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