perry
February 28, 2020, 5:24pm
2
Hi @rille111 - i can’t access that site to look at the form - can you verify? we should fix this first before worrying about the form, but did you read these posts?
Last reviewed August 2023
Please give these debugging tips a try before making a new post. If none of the suggestions work, please include the information that we request at the end of this guide in the new post that you create. Thank you!
Why use Forms?
Forms are one of the most useful parts of modern websites because they allow us to capture input from our visitors.
There are many ways to use forms: contact forms, such as contact forms and sign-up forms. Seeing as there are many types of fo…
Last reviewed: August 2023
We can definitely help you get your form working! Our form handling will work automatically for valid html forms but there are a few things you need so our form-handling can find your form. Here’s a few common things to check for:
Your <form> tag has a netlify (or data-netlify=true in javascript frameworks) attribute, as described and demonstrated in this article .
You have a name attribute for your form definition to let our system identify it as a unique form and t…
Last reviewed by Netlify Support on May 25, 2022
I have a form rendered using JavaScript, but it’s not submitting. What’s going on?
There are a few things to consider when using JavaScript with a Netlify-handled form:
If you have rendered your form using JavaScript and are not using a Static Site Generator (or, your generator does not render it down to HTML such as Gatsby does), you will need to make sure you have a hidden, pure HTML version of your form somewhere in your site.
This means …