const response = await fetch("https://api.darflen.com/auth/login", { method: "POST", headers: { "Content-Type": "application/json", 'Access-Control-Allow-Origin': '*', }, body: JSON.stringify({ email: fields[0].textContent, password: fields[1].textContent }) });