Embeded Form treated as Tracking Content on Firefox

Hi.

Honestly, I didn’t work with HubSpot templating system, but my guess {% form … %} will be translated into <script>insert form</script>.

So you’ll need another script tag after form. The result will look something like:

{% form
	form_to_use="{{ module.popup_contents.field_group.form_field.form_id }}"
	response_response_type="{{ module.popup_contents.field_group.form_field.response_type }}"
	response_message="{{ module.popup_contents.field_group.form_field.message }}"
	response_redirect_id="{{ module.popup_contents.field_group.form_field.redirect_id }}"
	response_redirect_url="{{module.popup_contents.field_group.form_field.redirect_url}}"
%}
<script>
if (typeof hbspt === 'undefined') {
 document.write('<p>The form is blocked by Firefox Enhanced Tracking Protection. Please email me directly at <a href="mailto:test@gmail.com">email</a></p>');
}
</script>