We'll review your info and get back to you as soon as possible.
Keep an eye on your email — we respond quickly!
A big thanks from Dan and the team!
Call Now!
document.addEventListener("DOMContentLoaded", function() {
let form = document.querySelector("form"); // Adjust selector if needed
if (!form) return;
form.addEventListener("submit", function(event) {
let honeypot = document.querySelector("input[name='honeypot']");
if (honeypot && honeypot.value.trim() !== "") {
event.preventDefault(); // Stops the form from submitting
alert("Spam detected. Submission blocked.");
}
});
});