Sign up below to win a landing page for your business.
Good luck!
Yes
No
Select one
Attract clients
Improve branding
Increase sales
Other
Select one
Very important
Important
Neutral
Not important
Yes
No
let currentStep = 0;
const steps = document.querySelectorAll(„.form-step“); function showStep(step) {
steps.forEach((s, index) => {
s.classList.toggle(„active“, index === step);
});
} function nextStep() {
const inputs = steps[currentStep].querySelectorAll(„input, select“);
for (let input of inputs) {
if (!input.checkValidity()) {
input.reportValidity();
return;
}
}
if (currentStep 0) {
currentStep–;
showStep(currentStep);
}
} function onSubmit(token) {
if (document.getElementById(„cp_nl_form“).reportValidity()) {
document.getElementById(„cp_nl_form“).submit();
}
}