Static website forms

A form backend for static websites

Static sites are fast and easy to deploy, but their HTML forms still need somewhere to send data. FormRhythm gives each form a hosted POST endpoint and keeps the responses in a searchable dashboard.

Keep your current frontend

Use your own HTML and CSS. Connect the form by changing its action and method attributes.

Skip backend deployment

There is no form server, database migration, or API route for you to maintain.

Review responses in one place

Search submitted fields, inspect timestamps, and manage responses from the dashboard.

Connect it with standard HTML

Replace the placeholder with the endpoint shown in your dashboard. Field names become the labels you review with each submission.

<!-- Your design stays yours -->
<form action="https://www.formrhythm.com/api/f/YOUR_FORM_ID" method="POST">
  <label>Email</label>
  <input type="email" name="email" required />
  <textarea name="message" required></textarea>
  <button type="submit">Send message</button>
</form>

How it works

From form to dashboard in three steps

  1. 01

    Create a FormRhythm project and form

    The form receives its own hosted submission endpoint.

  2. 02

    Add the endpoint to your HTML

    Set the form action to the endpoint and submit with POST.

  3. 03

    Send a test response

    Confirm the payload appears in your dashboard before publishing.