Waitlist · 2 designs
Reserve-your-spot waitlist for launches and beta programs. Includes an optional referral source dropdown so you can measure your acquisition channels from day one. Ships with honeypot spam protection.
HTML · 1 file
<!-- SaveForm.io: waitlist (glass) -->
<style>
[data-sf-tpl="waitlist"] {
all: revert;
box-sizing: border-box;
display: block;
width: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #18181b;
-webkit-font-smoothing: antialiased;
}
[data-sf-tpl="waitlist"] *,
[data-sf-tpl="waitlist"] *::before,
[data-sf-tpl="waitlist"] *::after {
box-sizing: border-box;
}
[data-sf-tpl="waitlist"] input,
[data-sf-tpl="waitlist"] textarea,
[data-sf-tpl="waitlist"] select,
[data-sf-tpl="waitlist"] button {
font: inherit;
color: inherit;
margin: 0;
}
[data-sf-tpl="waitlist"] button {
cursor: pointer;
-webkit-appearance: none;
appearance: none;
}
[data-sf-tpl="waitlist"] label {
display: block;
}
[data-sf-tpl="waitlist"].sf-waitlist--glass {
max-width: 480px;
background: rgba(255, 255, 255, 0.65);
backdrop-filter: blur(16px) saturate(140%);
-webkit-backdrop-filter: blur(16px) saturate(140%);
border-radius: 18px;
padding: 32px;
border: 1px solid rgba(255, 255, 255, 0.4);
box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.35);
color: #0f172a;
}
[data-sf-tpl="waitlist"] .sf-waitlist__badge {
display: inline-block;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 999px;
background: rgba(99, 102, 241, 0.12);
color: #4338ca;
margin-bottom: 16px;
}
[data-sf-tpl="waitlist"] .sf-waitlist__title {
font-size: 26px;
font-weight: 700;
letter-spacing: -0.02em;
margin: 0 0 8px 0;
color: #0f172a;
}
[data-sf-tpl="waitlist"] .sf-waitlist__lede {
font-size: 14px;
color: #475569;
margin: 0 0 24px 0;
line-height: 1.55;
}
[data-sf-tpl="waitlist"] .sf-waitlist__row {
display: flex;
gap: 8px;
margin-bottom: 12px;
}
[data-sf-tpl="waitlist"] .sf-waitlist__input {
flex: 1;
padding: 12px 14px;
border: 1px solid rgba(15, 23, 42, 0.12);
border-radius: 10px;
background: rgba(255, 255, 255, 0.85);
font-size: 14px;
outline: none;
transition: border-color 120ms ease, box-shadow 120ms ease;
}
[data-sf-tpl="waitlist"] .sf-waitlist__input:focus {
border-color: #6366f1;
box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}
[data-sf-tpl="waitlist"] .sf-waitlist__button {
padding: 12px 18px;
background: linear-gradient(135deg, #6366f1, #ec4899);
color: #ffffff;
font-weight: 600;
font-size: 14px;
border-radius: 10px;
border: 0;
white-space: nowrap;
transition: filter 120ms ease;
}
[data-sf-tpl="waitlist"] .sf-waitlist__button:hover {
filter: brightness(1.08);
}
[data-sf-tpl="waitlist"] .sf-waitlist__select {
width: 100%;
padding: 10px 14px;
border: 1px solid rgba(15, 23, 42, 0.12);
border-radius: 10px;
background: rgba(255, 255, 255, 0.85);
font-size: 13px;
color: #475569;
outline: none;
}
[data-sf-tpl="waitlist"] .sf-waitlist__fine {
font-size: 11px;
color: #64748b;
margin: 12px 0 0 0;
letter-spacing: 0.02em;
}
[data-sf-tpl="waitlist"] .sf-waitlist__honey {
position: absolute;
left: -9999px;
}
</style>
<form
class="sf-waitlist--glass"
data-sf-tpl="waitlist"
action="https://saveform.io/api/submit/YOUR_FORM_ID"
method="POST"
>
<span class="sf-waitlist__badge">Beta · invites rolling out weekly</span>
<h2 class="sf-waitlist__title">Join the waitlist</h2>
<p class="sf-waitlist__lede">Be first in line when we open invites. No spam, ever.</p>
<input type="text" name="_honey" class="sf-waitlist__honey" tabindex="-1" autocomplete="off" />
<div class="sf-waitlist__row">
<input class="sf-waitlist__input" type="email" name="email" placeholder="you@company.com" required />
<button class="sf-waitlist__button" type="submit">Get early access</button>
</div>
<select class="sf-waitlist__select" name="referral">
<option value="">How did you hear about us? (optional)</option>
<option>Friend / colleague</option>
<option>Twitter / X</option>
<option>Product Hunt</option>
<option>Hacker News</option>
<option>Other</option>
</select>
<p class="sf-waitlist__fine">By signing up you agree to our terms. Unsubscribe anytime.</p>
</form>
Replace YOUR_FORM_ID with the id of a form in your SaveForm dashboard. Every class is namespaced under [data-sf-tpl="waitlist"] so the template cannot collide with (or be overridden by) your site styles.