Request

Back home

I want you to say...




Anything else:

try { const response = await fetch("https://formspree.io/f/xaeygnjw", { method: "POST", body: new FormData(form), headers: { Accept: "application/json" } }); if (response.ok) { form.reset(); status.textContent = "Sent. Thank you."; } else { status.textContent = "Something went wrong. Try again."; } } catch (error) { status.textContent = "Something went wrong. Try again."; } });