document.addEventListener('DOMContentLoaded', function () { document.querySelector('#FormTeo').addEventListener('submit', function (event) { event.preventDefault(); const formData = new FormData(this); document.querySelector('.loader-teo').style.display = 'block'; // Muestra el loader fetch('process/pedidoTeo.php', { method: 'POST', body: formData }) .then(response => response.json()) .then(data => { document.querySelector('.loader-teo').style.display = 'none'; // Oculta el loader if (data.status === 'success') { Swal.fire({ icon: 'success', title: '¡Cotización Enviada!', text: data.message, timer: 3000, willClose: () => { window.location.href = 'index.php'; // Redirige a la página de inicio } }); } else { Swal.fire({ icon: 'error', title: 'Error', text: data.message }); } }) .catch(error => { document.querySelector('.loader').style.display = 'none'; // Oculta el loader Swal.fire({ icon: 'error', title: 'Error', text: 'Hubo un problema al enviar el mensaje.' }); }); }); });