Experience the difference in form handling approaches
Give your form a suitable name that reflects its purpose or content.
Create your form with a unique ID and reference query for easy identification.
Once satisfied, publish it to get a unique public URI.
After publishing your form, copy its public URI.
This link serves as the endpoint for form actions, enabling you to receive submitted data securely.
<form action="https://formle.dev/~/xsdAcRd" method="post">
</form>
In your HTML code, paste the form's public URI as the action attribute. This ensures that form submissions are sent to the correct endpoint.
<form action="https://formle.dev/~/xsdAcRd" method="post">
What's your Name?
<input type="text" id="name" name="name">
What motivated you to volunteer with us?
<input type="text" id="motivation" name="motivation">
<button type="submit">Submit</button>
</form>
In your HTML form, integrate the IDs you've previously established into the name (required) and ID (optional) attributes, along with queries.
This ensures precise mapping of data in the dashboard.
FAQ
Didn't find your question here? Let's chat and get it sorted!