Blank Form (#3)

ORDER

Order your one-page website

Choose your package and fill in the onboarding details. It takes about 10 minutes.

1. Your package

Basic
CHF 295 setup + CHF 24.95/mo
Standard
CHF 495 setup + CHF 39.95/mo
Premium
CHF 795 setup + CHF 59.95/mo

2. Company & contact

3. Onboarding details

4. Promo or partner code (optional)

Got a code from a partner or sales advisor? Enter it here so your order is assigned correctly.

function selectPkg(card, name, price, stripeUrl) { document.querySelectorAll('.pkg-card').forEach(c => c.classList.remove('active')); card.classList.add('active'); document.getElementById('lbl-pkg-name').innerText = name; document.getElementById('lbl-pkg-price').innerText = price; document.getElementById('selected_package').value = name + ' — ' + price; document.getElementById('selected_stripe_url').value = stripeUrl; } function handleFormSubmit() { const stripeUrl = document.getElementById('selected_stripe_url').value; if(stripeUrl) { window.location.href = stripeUrl; } }