fetch("http://127.0.0.1:5000/public/auth/sign-in", {
method: "POST",
body: formData,
cache: "no-store",
})
.then((res) => res.json())
.then((data) => console.log("hi"))
.catch((err) => console.log(err));
fetch("http://127.0.0.1:5000/public/auth/sign-in", {
method: "POST",
body: formData,
cache: "no-store",
})
.then((res) => res.json())
.then((data) => console.log("hi"))
.catch((err) => console.log(err));