Skip to main content

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

  1. Create a form in the WebStadia dashboard
  2. Copy the form endpoint URL
  3. Add it as the action attribute on your HTML form
  4. 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