blob: ef31e187d0a91ca9b35f6e4f207b85ad45feaf95 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
const form = document.getElementById("setup-form");
form.addEventListener('submit', async e => {
e.preventDefault();
const username = document.getElementById('username').value;
const email = document.getElementById('email').value;
const password = document.getElementById('password').value;
const admin = true;
const body = JSON.stringify({username, email, password, admin});
const resp = await fetch("/user/register", {
method: "POST",
headers: {'Content-Type': 'application/json'},
body,
})
const res = await resp.json();
if (res.success) location.replace("/user/login");
else alert("ASJHDOAISJDLKAJSD");
})
|