async function submitForm(form) {
const formData = new FormData(form);
const response = await fetch("https://api.web3forms.com/submit", {
// No need to set headers here
// Javascript does that automatically
let json = await response.json();
if (response.status == 200) {