🚀 Crea tu Pool

Cuantos más amigos se unan, mayor será la posibilidad de conseguir entre todos una beca grupal. Recibe tu Test Vocacional GRATIS al registrarte.

1
2
3
4

Completa los datos

1.- Crea tu pool

2- Datos personales

3.- Información de tu preparatoria o bachillerato actual

4.- Interés sobre la universidad y carrera

1
2
3
4

Completa los datos

4.- Interés Universitario (Continua)

5.- Perfil de Valor para Universidades

1
2
3
4

Completa los datos

5.- Perfil de Valor para Universidades (Continua)

6.- Compromiso con el Pool y la Beca

1
2
3
4

Completa los datos

7.- Información de padres o tutor

8.- Cuéntale sobre tí a la Universidad

9.- Sobre iiVVO

10.- Autorización y envío

Thank you! Your submission has been received!

Please review all the information you previously typed in the past steps, and if all is okay, submit your message to receive a project quote in 24 - 48 hours.

Oops! Something went wrong while submitting the form.
--- document.addEventListener("DOMContentLoaded", function () { const form = document.querySelector("form"); if (!form) return; form.addEventListener("submit", function (e) { e.preventDefault(); // Detiene el envío por defecto const formData = new FormData(form); fetch(form.action, { method: "POST", body: formData }) .then(response => response.json()) .then(data => { const tokenPool = data.token_pool; const tokenAlumno = data.token_alumno; if (tokenPool && tokenAlumno) { // 🚀 Ahora agregamos los tokens directo en la URL window.location.href = `https://www.iivvo.com/pool/completado?token_alumno=${tokenAlumno}&token_pool=${tokenPool}`; } else { alert("Faltan datos. Intenta de nuevo."); } }) .catch(error => { console.error("❌ Error al enviar el formulario:", error); alert("Hubo un problema al enviar tus datos. Intenta más tarde."); }); }); });