Skip to main content

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:

  1. The data is sent to the Micropage backend.
  2. The submission is stored against the project.
  3. It appears in the Form Submissions tab.
  4. 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

PlanWhat you receive
ProDaily 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.