Sendy Form Embed/Integration

Hi,

I need to use a Sendy form on my Webflow page.

Here is about Sendy: Sendy API.

Here is the form code:

<form action="https://conv.esensia.xyz/subscribe" method="POST" accept-charset="utf-8">
	<label for="name">Name</label><br/>
	<input type="text" name="name" id="name"/>
	<br/>
	<label for="email">Email</label><br/>
	<input type="email" name="email" id="email"/><br/><div style="display:none;">
	<label for="hp">HP</label><br/>
	<input type="text" name="hp" id="hp"/>
	</div>
	<input type="hidden" name="list" value="ZbHY892kDemn2DqaxOUSG1kg"/>
	<input type="hidden" name="subform" value="yes"/>
	<input type="submit" name="submit" id="submit"/>
</form>

I’ve tried to use the Webflow form and add “List” input, but it failed to add input with “list” name through Custom Attributes. But I get an error message: This is a reserved name.

Please help me. What is the best option to use the Sendy form code in Webflow?

Thank you.

A. Hary

<form action="https://my.install.site/subscribe" method="POST" accept-charset="utf-8">
	<label for="name">Name</label><br/>
	<input type="text" name="name" id="name"/>
	<br/>
	<label for="email">Email</label><br/>
	<input type="email" name="email" id="email"/><br/><div style="display:none;">
	<label for="hp">HP</label><br/>
	<input type="text" name="hp" id="hp"/>
	</div>
	<input type="hidden" name="list" value="ZbHY892kDemn2DqaxOUSG1kg"/>
	<input type="hidden" name="subform" value="yes"/>
	<input type="submit" name="submit" id="submit"/>
</form>