aboutsummaryrefslogtreecommitdiff
path: root/src/public/js/login.js
blob: 681b02f8e1ccaf93a344a6b30cd85f10cb6c9f5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const form = document.getElementById("login-form");

form.addEventListener('submit', async e => {
    e.preventDefault();
    const username = document.getElementById("username").value;
    const password = document.getElementById("password").value;

    const body = JSON.stringify({username, password});

    const resp = await fetch("/user/login", {
        method: "POST",
        headers: {'Content-Type': 'application/json'},
        body,
    });
    const res = await resp.json();
    if (res.success) location.replace("/");
    else alert("ASJHDOAISJDLKAJSD");
})