This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_file_field name="photo" label="Photo: " icon="photo.png" description="Max filesize is 5KB (jpeg or png)"></new_file_field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_select_field name="hear" label="How did you hear about us: " description="They rock, right?!"> | |
<options> | |
<option>Partners</option> | |
<option>Google</option> | |
<option>Other</option> | |
</options> | |
</new_select_field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_select_field name="hear" multiple="true" ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_radio_list name="subject" label="Subject: " description="If you want"> | |
<options> | |
<option>General</option> | |
<option>Sales</option> | |
<option>Complain</option> | |
</options> | |
</new_radio_list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_checkbox_list name="interests" label="Interests: " description="If you want"> | |
<options> | |
<option>Metallica</option> | |
<option>System of a Down</option> | |
<option>The White Stripes</option> | |
<option>Judas Priest</option> | |
<option>Kansas</option> | |
<option>Dream Theather</option> | |
</options> | |
</new_checkbox_list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_simple_captcha label="Security first" icon="script_key.png" default="Enter the code →" error="Invalid code, try again" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_recaptcha label="Recaptcha" error="Invalid code, try again" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_text_field name="something" label="Something: "> | |
<validation> | |
<!-- validation rules go here --> | |
</validation> | |
</new_text_field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_text_field name="name" label="Name: " icon="user.png"> | |
<validation> | |
<required>Please, enter a name.</required> | |
</validation> | |
</new_text_field> | |
<new_radio_list name="subject" label="Subject: "> | |
<options> | |
<option>General</option> | |
<option>Sales</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<new_text_field name="email" label="Email: " icon="email.png"> | |
<validation> | |
<valid_email>Please, enter a valid email.</valid_email> | |
</validation> | |
</new_text_field> |