Money Life 101

Join the Top 10%. Enter your details below for premium access.

Success! Your details have been sent. Check your email.

const webhookUrl = '[https://nautical-camping-user.ngrok-free.dev/webhook-test/7acc6df8-1dc2-4300-9872-097eabe491a6](https://nautical-camping-user.ngrok-free.dev/webhook-test/7acc6df8-1dc2-4300-9872-097eabe491a6)'; fetch(webhookUrl, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ name: document.getElementById('name').value, email: document.getElementById('email').value }) }) .then(response => { document.getElementById('lead-form').style.display = 'none'; document.getElementById('success-msg').style.display = 'block'; }) .catch(error => console.error('Error:', error)); });