> ## Documentation Index
> Fetch the complete documentation index at: https://docs.formdb.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Easiest way to setup your HTML form.

## Setup your form in 3 minutes

Don't worry about emails, spam checking, integrations and form issues ever again. Code your front-end, add your unique FormDB URL, and we'll handle the rest.

### Step 1: Create your HTML Form

Use the following code snippet to create a fully functional form. Replace `{Your Form ID}` with the ID you get from your FormDB dashboard.

```html theme={null}
<form action="https://formdb.io/s/{Your Form ID}" method="POST" enctype="multipart/form-data">
  <input type="email" name="email" placeholder="Enter your email">
  
  <textarea name="message" placeholder="Enter your message"></textarea>
  
  <button type="submit">Submit</button>
</form>
```

### Step 2: That's it!

Your form is now connected. When a user submits this form, you will receive an email notification (if configured) and the data will be securely stored in your FormDB dashboard.

### Next Steps

Check out our features to enhance your form:

* [File Uploads](/features/file-uploads)
* [Spam Protection](/features/spam-protection)
* [Integrations](/features/integrations)
