|
Home > Advanced Options & Appendixes > Advanced Options in the Website Registration Form
Advanced Options in the Website Registration Form
It is possible to insert complex fields to your website registration form.
Note: This chapter requires some basic knowledge in HTML.
You can insert two types of fields to the form: 1. Fields that are part of the recipients details 2. Fields that will be sent by mail to account owner, but are not part of the recipient's details.
Fields that are part of the recipients details Generally, all the fields will be part of the registration form, in the following form: <input type="text" name="field1"> The 'name' tag is who the system knows which field to insert the details to.
Fields that will be sent by mail to account owner It is possible to add additional fields to your form, that will be sent by mail to the account owner (This email address is set when creating the form: 'email address to send notifications about new subscribers'). Every form is created automatically with 15 text fields of this type. The code line in the HTML looks as following: <input type="text" name="free_text5" size=50> The name of this free field should always be "free_text" with a number in the range 1-15, like in the example above.
Both those fields types are text fields. You can customize the fields types as described below:
|