Introduction
The creation of a Web Page on Factorly begins with the completion of an initial form, which determines the type of page to be created: a simple Web Page or a page including a registration form.
For a page with a form, it is essential to configure both the Web Page including the form and an associated confirmation page.
Creating a Web Page with a form
The Create a page button redirects the user to a content creation form.
You need to fill in :
- Content name ( Mandatory field)
- Group (Mandatory field)
- Content location: enables content to be stored in a folder as soon as it has been created.
- Labels: used to find content easily using filters.
- Select Web pages with a form
Then choose the desired mode for creating the simple web page:
- By loading an HTML file directly
- Using the code editor, from scratch
Please note that all content is linked to a group. The group is selected by the user as soon as the new content is created.
Content of the web page with form
The HTML of a web page with a form must meet several structural requirements:
- HTML must contain a
<form>, withMETHOD=POST;
Please note! This tag must not contain an action.
- The tags
<input>must have aname=different from each other, with the exception of radio and checkbox tags, which can have an identicalname=; - The
name=must be uppercase and/or numeric, it may contain_and it must not exceed 128 characters ; - The HTML must contain an
<input type=submit>tag for the form to be valid; - The prohibited fields are listed below:
<input type="button"><input type="file"><input type="image"><input type="password"><input type="search">
It is also possible to configure the Trigger an email following submission of the form.
Contents of the confirmation page
Conclusion
If you want to distribute the web page using a campaign sent from Sendingly, the web page and the campaign must be created in the same group.
Additional reading
Creating content using an HTML file
Create content using the code editor