Getting Started

Fields help you to setup your form in a easy way.

Basic field:
[text name="your_text"]

IMPORTANT: Fields always require a unique name.

Required field (just add an * (asterisk) after it's BBCode):
[text* name="your_text"]

Field with an initial value:
[text* name="your_text" value="Hi!"]

User tag as initial value:
[text* name="your_text" value="{user.email}"]

All fields accepts global HTML attributes:
[text name="your_text" id="my-id" class="my-class" style="background: red;"]

IMPORTANT: Submit button is essential to let the user send the form so, don't forgive to place at least one!
[submit value="Submit"]

EXTRA: Reset button let's user to clear the form:
[reset value="Reset"]