You don’t really need JavaScript to implement your form’s backend, you can use HTML just fine as well. This makes working with Form Chimp even easier for people who aren’t comfortable with JavaScript yet.

We do however recommend implementing your form using JavaScript since it allows you to have more control over the experience and allows you to be extra fancy.

How To?

Here’s an HTML example for working with your form.

<form action="<https://api.formchimp.app/?form=**FORM_ID**&forward=/success.html>" method="post">
    <!--Your inputs--->
</form>

<aside> ⚠️ The forward parameter should be a route on your site!

</aside>