document.addEventListener('DOMContentLoaded', function () { const form = document.querySelector('#contact-form'); form.addEventListener('submit', function (e) { if (!form.checkValidity()) { e.preventDefault(); e.stopPropagation(); } form.classList.add('was-validated'); }); });