> For the complete documentation index, see [llms.txt](https://docs.maker.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.maker.co/tips-and-tricks/forms.md).

# Forms

***

### FAQs

<details>

<summary>Can I build a form in Maker?</summary>

Yes! You can build a form directly in Maker. What Maker doesn't do is store or process the submissions, so you'll need a plan for where those go once someone fills it out.

</details>

<details>

<summary>Where do form submissions go?</summary>

That part lives outside of Maker. Since we're not a form tool, storing submissions isn't something we handle on our end. You'll need to set up a database or backend solution to collect them, and then you can connect that directly in Maker.

</details>

<details>

<summary>Can Maker connect to my existing database?</summary>

A simpler option is to use a third-party form tool (like Typeform, Jotform, or Google Forms) and just embed it in Maker. That way, the form tool handles the submissions for you, and you still get it living inside your Maker experience.

</details>

<details>

<summary>What if I don't want to set up a database myself?</summary>

A simpler option is to use a third-party form tool (like Typeform, Jotform, or Google Forms) and just embed it in Maker. That way, the form tool handles the submissions for you, and you still get it living inside your Maker experience. When you're ready to embed, make sure you're copying the complete embed code from your form tool, which includes both the `div` tag and the `script` tag. Both are needed for the form to load and render correctly. It should look something like this:

html

```html
<div data-tf-live="01HXXXXXXXXXXXXXXXX"></div>
<script src="//embed.typeform.com/next/embed.js"></script>
```

</details>

<details>

<summary>Will I need my dev team for this?</summary>

Not necessarily. If you're comfortable with how form submission tools work, you may be able to handle it yourself. If you're using a third-party form tool that gives you an embed code, that's actually pretty straightforward to drop into Maker. Where it gets more involved is if you're connecting a custom database or setting up something more complex on the backend. In that case, having a dev help out would make things a lot easier.

</details>

***

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.maker.co/tips-and-tricks/forms.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
