Register attendees for webinars with name, email, and timezone.
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="Full name" required />
<input type="email" name="email" placeholder="Email" required />
<input type="text" name="company" placeholder="Company (optional)" />
<select name="timezone" required>
<option value="">Your timezone</option>
<option value="EST">Eastern (EST)</option>
<option value="CST">Central (CST)</option>
<option value="PST">Pacific (PST)</option>
<option value="GMT">GMT</option>
<option value="CET">Central European (CET)</option>
</select>
<textarea name="questions" rows="3" placeholder="Questions for the speaker (optional)"></textarea>
<button type="submit">Register for Webinar</button>
</form>A webinar registration form that captures attendee details including name, email, company, and timezone. Send confirmation emails and reminders to registered attendees.
Set up your form backend in under a minute. No server required, no complex configuration — just a simple endpoint for your forms.