Forms and submission
Build accessible controls and connect them to your own submission backend.
Build the form
- Add a Form container.
- Group related fields with Fieldset where appropriate.
- Add a visible Label for each control and provide meaningful field names.
- Choose Input, Textarea, Select, Checkbox or Radio according to the value needed.
- Add a submit control and configure the destination supported by your integration.
Input types include text, email, password, number, tel, url, search, date, time, datetime-local, month, week, color, range and hidden. Use types that match the expected value, but do not treat browser validation as security.
Own the receiving endpoint
Pagiera's visual form controls are not a managed inbox or payment service. Your application must receive and validate submissions, enforce authorization where needed, prevent abuse and return useful success or error feedback. Never place a server credential in a hidden field.
File fields
FileInput selects a file in the browser. Your upload endpoint must enforce size and type limits, storage policy and access controls. Test the actual submission encoding and upload flow in your host application.
Verify the visitor experience
Test keyboard navigation, labels, required fields, invalid input, repeated submission, network failure and a successful response. Check the public preview, not only the editor canvas.