Version 1.0
Returns the value of the label field of the form.
<input type="text" placeholder="{{item.label}}" >
{{ response.form.label }}
Nome: *
Version 1.0
Returns the value of the type field of the form.
{% if item.type='text' %}
<input type="text" name='{{item.form_field}}' >
{% endif %}
{{ response.form.type }}
text, select, input, hidden, Title, Subtitle, Button
Version 1.0
Returns the value of the default_value field of the form.
<input type='hidden' name='{{item.form_field}}' value='{{item.default_value}}'>
{{ response.form.default_value }}
2
Version 1.0
Returns the value of the required field of the form.
<input type="text" {% if item.required="1" %} class="required" require='1' {% endif %} >
{{ response.form.required }}
true
Version 1.0
Returns the value of the options field of the form.
{% if item.type="select" %}
<div class="select" >
<select name='{{item.form_field}}' class="required">
{% for item2 in item.options %}
<option value='{{item2}}' >{{item2}}</option>
{% endfor %}
</select>
</div>
{% endif %}
{{ response.form.options }}
Array (1,name)
Version 1.0
Returns the value of the form_field field of the form.
<input type="text" name='{{item.form_field}}' email='1' >
{{ response.form.form_field }}
nome