Forms
Forms are added through markup in the editor. Submissions are stored by Micropage and viewable in the web app or CLI.
Adding a form
In the Edit tab, add a form block to your page markup:
form: Contact
input: Name*
input: Email*
textarea: Message
submit: Send
Save and publish for the form to become active.
How submissions work
When a visitor submits the form:
- The data is sent to the Micropage backend.
- The submission is stored against the project.
- It appears in the Form Submissions tab.
- Notification jobs run if configured (email on Pro/Pro+, webhook on Pro+).
No external service is required for basic submission storage.
Viewing submissions
Web app: open the Form Submissions tab. Submissions are listed with timestamp, page URL, and field data.
CLI:
micropage submissions list
micropage submissions show <id>
Spam protection
Forms include a hidden honeypot field and server-side schema validation. Only fields defined in the form markup are accepted.
Notifications
| Plan | What you receive |
|---|---|
| Pro | Daily email digest |
| Pro+ | Instant email per submission + daily digest |
| Pro+ | Webhook POST to a URL you configure |
Configure the webhook URL in Settings → Forms. See Forms (concepts) for the payload format and header reference.
Limits
Free accounts have a submission limit per project. Paid plans have higher limits.