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 to choose a display name in the Netlify site dashboard.
You further have a “name” attribute with a unique value for each form field in your form. Something like <input name="email" ...> or <textarea name="message" ...> is what you need, so that each of your form fields is sent from the browser and can be collected on our end. Make sure you don’t have two of the same field names on a single form; this will make one field override the other in an unexpected way. Fields without names will be ignored by our processing.
Make sure you have those things in your standards-compliant html form and you should find your form in your dashboard! There’s some more useful information and a good example here.
If you think you have all these things in place, and things are still not working, or you have a javascript form, you should probably take a look at our longer forms debugging article which includes a lot more details.
We also recommend trying to search the forums or look at topics tagged Netlify forms if you haven’t already - it’s likely your question was already asked by someone else!
If you are still having problems, please provide more information such as what you have already tried, and a link to your live form.
When you change the input names on your form submissions, we no longer show data for the old submissions using the old names. So you’ll want to change those back to retrieve your old data We don’t recommend changing form field names because of this!
As far as I can tell, the form on your webpage posts directly to slack, so not much to debug on our side. If you want to link to an older deploy in your deploys listing (from here: Netlify App) then we can take a look at how it used to be setup, and maybe be able to advise you on any failures in Netlify’s form handling.
I looked in the database and can see that we found no form fields at all in your html form at deploy time (both of the forms on that site are the same - have no fields defined in the plain html). Please review this doc, as it describes exactly your problem and how to fix it:
Your submission will work better once the form has a definition that contains the data you send us
Thanks for reaching out, and welcome to Netlify Forums
I am sorry you are having trouble getting your forms to work.
This Support Guide is the first port of call to debug any forms issues. There are also many other Support Guides for forms - you can find them here: #Netlify-support: support-guides
We also recommend trying to search the forums or look at topics tagged Netlify forms if you haven’t already - it’s likely your question was already asked by someone else!
If you are still having problems after reading the above links, please create a new thread and provide more information such as what you have already tried, a link to your live form, any errors or logs from your builds, etc.
I actually got problems with my form, I tried everything what is available for debug, but nothing worked. So this a React App (https://drkeseruklaudia.netlify.app/), if it matters, the build ran on my computer so not a git-netlify build. Here is the code of the form: