# Pardot Form

Below you'll find the steps to embed a Pardot form:&#x20;

1. Add a new step and choose the "Lead Form" guide.&#x20;
2. Click on the "Embed Custom Form" button underneath the Storylane Lead Form.
3. Choose "Pardot" from the dropdown and copy-paste the code from Pardot.

<div align="left"><figure><img src="https://2431356420-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FN8hWd9k2Pbb6YSWO4pUQ%2Fuploads%2FY14zzmu9euefKVfWkazF%2Fimage.png?alt=media&#x26;token=d6611e98-327a-499c-8df0-8e07f8932a45" alt="" width="375"><figcaption></figcaption></figure></div>

4. Above the code you pasted from Pardot, you'll need to add the following code:&#x20;

```
<script>  
window.addEventListener("message", function (event) { 
if (event.data && event.data.message === "PARDOT_FORM_SUCCESS") { 
     window.parent.postMessage({
	          message: 'storylane-lead-submit',
	          payload: {
	               lead: { email: event.data.email }
	          }
	          },'*');
   };
}); 
</script>
```

5. In Pardot, under the "Thank you Code" tab from the "Completion Actions" section, you'll need to add the following code:&#x20;

```
<script>
window.parent.postMessage(
{
 message: "PARDOT_FORM_SUCCESS",
 email: "{{Recipient.Email}}"
},
"*"
);
</script>
```

<figure><img src="https://2431356420-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FN8hWd9k2Pbb6YSWO4pUQ%2Fuploads%2Fk8FFVGrJPoVyxeQHrzy0%2Fimage.png?alt=media&#x26;token=f230fc35-a208-4355-a224-60343a854eef" alt=""><figcaption></figcaption></figure>

You are now ready to test the Pardot form you embeded. Feel free to contact <support@storylane.io> if you have any questions or need help with embedding a custom Pardot form.&#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.storylane.io/integrations/integrations/pardot/pardot-form.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
