Form component
Last updated on 11/27/2024@mrbirddev
Email form content to
When you submit a form, slidde will email to this email address.
This field is required.
Form field list
Form action
There are two types of action you can configure when the user submits a form. You can either show a message or redirect to a specific URL. The default message to show is Thank you for your information
A common use case is that you create a multi-section webpage and assign certain section as the #success
section, and redirect to this #success
section.
DOM structure
A Form component is composed like this in the HTML DOM structure.
<form>
<div>
<input type="..." />
</div>
<div>
<textarea />
</div>
<div>
<div>Submit</div>
</div>
</form>