Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
document.addEventListener('DOMContentLoaded', function() { // Create honeypot field const honeypotField = document.createElement('div'); honeypotField.innerHTML = ` `; // Add to form const form = document.querySelector('.uui-contact03_form'); if (form) { form.appendChild(honeypotField); // Add submission handler form.addEventListener('submit', function(e) { const honeypotValue = form.querySelector('[name="contact_me_by_fax"]').value; if (honeypotValue) { e.preventDefault(); return; } }); } });