Published
Jul 6, 2026 2:09 PM by
The Maritime Executive
Stay on Top of the Daily Maritime News The maritime news that matters most Get the latest maritime news delivered to your inbox daily. Subscribe Now // Global validation function (only defined once) if (!window.validateEmailSignupForm) { window.validateEmailSignupForm = function(form) { const input = form.querySelector('.email-signup__input'); const email = input.value.trim(); input.classList.remove('error'); if (!email || !email.includes('@') || !email.includes('.')) { input.classList.add('error'); input.focus(); return false; } return true; }; } // Fetch fresh CSRF token for all forms (only once) if (!window.csrfTokenFetched) { window.csrfTokenFetched =...
Continue Reading...