const submitForm = async form => await fetch(form.action, { method: form.method, body: new FormData(form), headers: { "X-Requested-With": "XMLHttpRequest" } })