Thanks! We got your message and will call you back shortly.
function ezwebLead(f){var b=f.querySelector(‘button’),n=f.querySelector(‘.lnote’);b.disabled=true;b.textContent=’Sending…’;
fetch(‘http://127.0.0.1:8010/api/websites/sites/d4eb4e9a-c79e-4416-8d48-5b2f7eddcb83/lead/’,{method:’POST’,headers:{‘Content-Type’:’application/json’},
body:JSON.stringify({name:f.name.value,phone:f.phone.value,email:f.email.value,message:f.message.value,page:’contact’})})
.then(function(){f.reset();n.hidden=false;b.textContent=’Sent ✓’;})
.catch(function(){b.disabled=false;b.textContent=’Send message’;alert(‘Could not send right now. Please call us instead.’);});
return false;}