Forms
WebStadia Forms lets you collect form submissions from any website — no backend code required. Just point your HTML form's action attribute to WebStadia and submissions are stored in your dashboard with optional email notifications.
How it works
- Create a form in the WebStadia dashboard
- Copy the form endpoint URL
- Add it as the
actionattribute on your HTML form - Submissions appear in your dashboard
Quick example
<form action="https://api.webstadia.com/v1/fm/YOUR_FORM_ID" method="POST">
<input type="text" name="name" placeholder="Name" required>
<input type="email" name="email" placeholder="Email" required>
<textarea name="message" placeholder="Message"></textarea>
<button type="submit">Send</button>
</form>
That's it. No JavaScript, no API keys, no CORS configuration. Works on any website — even ones not hosted on WebStadia.
Features
- Zero JavaScript required — Works with plain HTML forms
- Email notifications — Get notified when someone submits a form
- Spam protection — Built-in honeypot spam filtering
- Custom redirects — Send users to a thank-you page after submission
- Dashboard viewer — View, search, and export all submissions
- JavaScript API — For more control, submit via
fetch()with JSON - Unlimited forms — Create as many forms as you need
Next steps
- HTML Forms → — The simplest way to use forms
- JavaScript API → — For dynamic applications
- Spam Protection → — Keep bots out
- Email Notifications → — Get alerts on submissions