Contact Us
Neglect of mathematics works injury to all knowledge, since he who is ignorant of it cannot know the other sciences or the things of the world- Roger Bacon (1214–1294)
window.addEventListener("load", function() {
const form = document.getElementById('my-form');
form.addEventListener("submit", function(e) {
e.preventDefault();
const data = new FormData(form);
const action = e.target.action;
fetch(action, {
method: 'POST',
body: data,
})
.then(() => {
alert("Success!");
})
});
});