In order to insert an HTML form (empty at first) in your page click
the Form button from the toolbar:
Once inserted, the form will be indicated by a doted red outline. You can set form options by using the Form Properties panel.
The Form Properties panel is displayed when
you click inside a form (inside the doted red outline) or when the <FORM> tag is selected in the Tag
Selector:
To configure this panel, follow the instructions below:
In the Element ID text box enter the value for the id attribute. It will uniquely identify the element (form) in page.
In the Action text box enter the URL to the page that will process the form.
In the Target drop-down menu select in what window you want the returned data to be displayed:
Default
_blank
_parent
_self
_top
In the Method drop-down menu select the method to be used when sending the form data to the server:
Default
GET - each form field is passed as URL parameter to the page specified in the Action text box.
POST - form values are submitted to the Action page as POST variables, hidden to the user.
In the Enctype drop-down menu select the encoding type of the data submitted to the server:
Default
application/x-www-form-urlencoded
multipart/form-data