bug squash

pull/5/head
Luna 2021-07-18 10:57:02 -07:00
parent 6cb1d8891a
commit 3afc56b715
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ form.addEventListener("submit", async function(event) {
uname = formData.get('uname');
pin = formData.get('pin');
const response = await fetch(`/users/${uname}/${pin}`);
const response = await fetch(`/api/users/${uname}/${pin}`);
const loginInfo = await response.json();
if (loginInfo.status === "ok") {