Find Your Vegas Vibe
// SEND FORM
const form =
document.getElementById("vibeForm");
const formData =
new FormData(form);
try {
const response =
await fetch(form.action, {
method: "POST",
body: formData,
headers: {
"Accept": "application/json"
}
});
if (response.ok) {
console.log(
"Email sent successfully"
);
} else {
console.error(
"Form submission failed"
);
}
} catch (error) {
console.error(
"Error:",
error
);
}
});