Fill out the form below; our team will get back to you soon.
Email sent successfully
event.preventDefault(); // Prevent default form submission behavior
// Disable the submit button to prevent multiple clicks
submitButton.textContent = "Sending..."; // Change button text to indicate the process
// Gather form data
// Define template parameters
// Send email via EmailJS
// Display success notification
// Reset the form immediately
// Re-enable the submit button
submitButton.textContent = "SEND MESSAGE"; // Reset button text
// Hide the notification after 2 seconds (2000ms)
}, 2000); // Delay for 2 seconds
// Display error notification
// Re-enable the submit button after error
submitButton.textContent = "SEND MESSAGE"; // Reset button text
// Hide the notification after 2 seconds (2000ms)
}, 2000); // Delay for 2 seconds