Let attendees confirm attendance, guest count, and dietary requirements.
Copy-paste ready code. Replace YOUR_FORM_HASH with your FormsList endpoint hash.
<form action="https://formslist.com/f/YOUR_FORM_HASH" method="POST">
<input type="text" name="name" placeholder="Your name" required />
<input type="email" name="email" placeholder="Email" required />
<label><input type="radio" name="attending" value="yes" required /> Yes, I'll be there!</label>
<label><input type="radio" name="attending" value="no" /> Sorry, can't make it</label>
<input type="number" name="guests" min="0" max="10" value="0" />
<input type="text" name="dietary" placeholder="Dietary restrictions (optional)" />
<button type="submit">Send RSVP</button>
</form>An RSVP form for events that captures attendance confirmation, number of guests, and dietary restrictions. Perfect for weddings, corporate events, meetups, and parties where you need to plan for headcount and catering.
Set up your form backend in under a minute. No server required, no complex configuration — just a simple endpoint for your forms.