|
|
|
|
|
|
Integrating your Formdesk form in your website |
|
This section explains how you can share your Formdesk forms with the visitors of your website.
The instruction requires that you can use html code within you webpage. |
|
This document discusses the following topics:
|
|
Your form's URL |
Each Formdesk form is assigned an internet address (url) automatically. You can refer to this URL from within your website or within an email message in which you invite people to submit your form.
The URL to your form is built up the following way:
https://www.formdesk.com/your folder/your form
your folder = the folder name that you entered during registration and that you can modify in the account details section.
your form = the name of the form that you entered during the creation of your form and that you can modify in the Settings tab when editing your form.
You can request your form's URL the following way:
Login to your Formdesk account and go to the Forms Summary.
Click the button that is placed at the left of the form in the Forms Summary to popup the menu.
Choose the option 'View link/URL to form...' |
|
Refer to your Formdesk form using a link |
If you want to place a link to your form on your website, you need to use the html
Click <a href="https://www.formdesk.com/demo/haalmeeruituwgeld" target=”_blank”>here</a> to open the form.
The html code above results in:
Click here to open the form.
Include the part target=”_blank” only if you want the form to be launched in a new window. If you don't open the form in a new window you can enter a URL to go to after form submission in the Settings tab when editing your form. |
|
Embed your Formdesk form into your website |
If you want to embed your form into your website to make it part of your webpage you need to use th html <iframe>-tag:
<iframe src="https://www.formdesk.com/demo/iframe_sample2" align="center" width="300" height="500"></iframe>.
The html code above results in:
Learn more about the usage of the iframe tag. |
|
|
|
|