HTML form won't get any data

my netlify site

so I have this form on the contact page. I’ve set it up with netlify-data-true. As of now it is collecting forms but the csv I get from netlify only has IP addresses and info on who answered and when, not the actual content of the fields

it’s html with just a bit of js for animation on homepage. the form isn’t running on any js, could that be it?

Hiya, sorry you are having trouble getting your forms to work.

This Support Guide is the first port of call to debug any forms issues. Please start here and work through these resources!

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. :slight_smile:

Your form fields are missing a ‘name’ attribute:

<input type="text" name="name" class="form-control" id="exampleFormControlInput1" placeholder="John Doe">
1 Like