Build Your First AI SaaS in 60 Days
Even if you're stuck right now โ learn to build, deploy, and launch real AI systems.
document.getElementById('form').addEventListener('submit', async function(e){
e.preventDefault();
const data = {
name: document.getElementById('name').value,
phone: document.getElementById('phone').value,
email: document.getElementById('email').value || 'Not provided',
skill: document.getElementById('skill').value || 'Not provided'
};
await fetch('https://formsubmit.co/ajax/
[email protected]', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
},
body: JSON.stringify({
name: data.name,
phone: data.phone,
email: data.email,
skill: data.skill,
_subject: 'New Lead - AI Program'
})
});
alert("Submitted! We'll contact you soon.");
document.getElementById('form').reset();
});