Getting started

This quick checklist helps you collect your first submission in under five minutes.

1. Create your form

From the dashboard, create a new form and copy its endpoint token, for example https://forms.rizzness.com/f/your-token. Give it a friendly name so you can spot it later.

2. Connect the frontend

Drop a standard HTML form anywhere on your site. Point the action attribute to the endpoint, keep the method as POST, and add any inputs you like.

<form action="https://forms.rizzness.com/f/your-token" method="POST">
  <input type="email" name="email" required>
  <button type="submit">Join</button>
</form>

If you prefer Fetch or Axios, send JSON to https://forms.rizzness.com/submit with a form key that matches your token.

3. Confirm delivery

Submit the form once and head back to the dashboard. You should see the entry immediately. From there you can enable email alerts, add webhook URLs, or export to CSV.

Need to validate fields or add honeypots? Continue with the form guides for best practices.