HTML forms that
just work.

Point your form's action to our endpoint. We handle submissions, storage, and email notifications. No backend needed.

Start for Free →

3 forms · 100 submissions/mo · No credit card

Three steps. That's it.

1️⃣

Create a form endpoint

Sign up, name your form, get a unique URL.

2️⃣

Point your HTML form

Set the action attribute to your endpoint URL.

3️⃣

Get submissions

View in dashboard or get email notifications.

Copy. Paste. Done.

<form action="https://yoursite.com/f/your-form-id" method="POST">

  <!-- Honeypot spam protection (keep this hidden) -->
  <input type="text" name="_gotcha" style="display:none">

  <!-- Optional: redirect after submit -->
  <input type="hidden" name="_next" value="https://yoursite.com/thanks.html">

  <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>

📧 Email Notifications

Get an email for every submission. Toggle per form.

🛡️ Spam Protection

Built-in honeypot field + rate limiting (10/min).

🌍 CORS Enabled

Works from any domain. No config needed.

📊 Dashboard

Search, filter, and manage all submissions.