Iniciar sesión - IFM LMS
Ir al contenido principal

IFM LMS

  • Iniciar sesión

¡Bienvenido!

Por favor ingrese un correo electrónico válido

El campo no puede estar vacío

¿Olvidaste tu contraseña?

O inicie sesión con

O regístrese con

Crear una nueva cuenta
© Copyright IFM Global 2025
```javascript function trackPageView() { fetch('https://hooks.zapier.com/hooks/catch/11059926/ukugtmk/', { // <- Added quotes around URL method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ event: 'page_view', page_url: window.location.href, page_title: document.title, timestamp: new Date().toISOString(), user_agent: navigator.userAgent, user_ip: 'auto', // This will be detected by Zapier }) }); } // Track page views on load trackPageView(); ```