BASF Allmendingen/Pfraunstetten field day
2025-06-23
Coordinates:
lat: 48.31917521023422
long: 9.808694542329674
Add appointment to calendar
<script> document.addEventListener('DOMContentLoaded', function () { const form = document.querySelector('.feldtag-form'); form.addEventListener('submit', function (event) { event.preventDefault(); const formData = new FormData(form); const data = {}; formData.forEach((value, key) => { data[key] = value; }); // webhook from make.com !!! fetch('https://hook.eu2.make.com/y1va5gprtcmuwqh3xgunn5dw3wgwcw4m', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data) }) .then(response => { if (response.ok) { // alert('Form submitted successfully!'); } else { // alert('There was an error submitting the form. Please try again.'); } }) .catch(error => { console.error('Error:', error); alert('There was an error submitting the form. Please try again.'); }); }); }); </script>