← All templates

RSVP form

Attendance, guest count, and dietary notes for events.Plain HTML — it inherits your site's styles and needs no backend or JavaScript.

Preview

Will you attend?

The code

<form action="https://crunchforms.com/form/{formID}" method="post">
  <label for="name">Your name</label>
  <input name="name" type="text" id="name" required />

  <label for="email">Email</label>
  <input name="email" type="email" id="email" required />

  <fieldset>
    <legend>Will you attend?</legend>
    <label><input type="radio" name="attending" value="yes" required /> Joyfully accepts</label>
    <label><input type="radio" name="attending" value="no" /> Regretfully declines</label>
  </fieldset>

  <label for="guests">Number of guests (including you)</label>
  <input name="guests" type="number" id="guests" min="1" max="10" value="1" />

  <label for="dietary">Dietary requirements</label>
  <textarea name="dietary" id="dietary" rows="2"></textarea>

  <button type="submit">Send RSVP</button>
</form>

How to use it

  1. Create a free Crunchforms account and add a form in the dashboard (takes about a minute).
  2. Replace {formID} in the actionURL with your form's ID — or use the dashboard's snippet generator, which fills it in for you.
  3. Paste the form into any page. Submissions appear in your dashboard and, if you like, in your inbox. Add a honeypot or captcha in the form settings for extra spam protection.

1,000 free submissions a month, spam filtering included, no credit card required.

Start for free