Schedule a demo

Please use a valid company email address.

Thank you for signing up for the Agent Builder.

You’re officially on the waitlist. You’ll hear from us as soon as we have an invitation ready for you to start building your agent. 

Oops! Something went wrong while submitting the form.
const emailInput = document.getElementById('Company-email-required'); const errorSection = document.getElementById('email-error'); const submitButton = document.getElementById('submit'); // Function to get URL parameter by name function getURLParameter(name) { const urlParams = new URLSearchParams(window.location.search); return urlParams.get(name); } // Set the value of the input field with ID 'Email' if 'email' parameter exists const emailParam = getURLParameter('email'); if (emailParam) { if (emailInput) { emailInput.value = emailParam; } } const restrictedDomains = [ 'gmail.com', 'yahoo.com', 'hotmail.com', 'outlook.com', 'aol.com', 'icloud.com' ]; // Initially hide the error section errorSection.style.display = 'none'; emailInput.addEventListener('change', () => { const emailValue = emailInput.value.trim(); const domain = emailValue.split('@')[1]; if (domain && restrictedDomains.includes(domain.toLowerCase())) { errorSection.style.display = 'block'; submitButton.disabled = true; } else { errorSection.style.display = 'none'; submitButton.disabled = false; } });