Hello, I made a Netlify form on my site. Everything works fine and it shows the name and email that I type into the form, but it doesn’t show the text.
My site can be found here
Here is the form source code (made in react if that changes anything)
function ContactForm() {
return (
<div>
<form name="contact" method="POST" netlify>
<input type="hidden" name="form-name" value="contact"/>
<div>
<div>
<div>
<input required placeholder="Enter your name..." type="text" name="name" />
</div>
<div>
<input required placeholder="Enter your email..." type="email" name="email"/>
</div>
</div>
<div>
<div>
<textarea required placeholder="Make a suggestion, report a bug, or say something nice!" name="message"></textarea> <--- HERE IS WHERE YOU ENTER THE TEXT
</div>
</div>
</div>
<div>
<button type="submit">Send</button>
</div>
</form>
</div>
);
}
(I removed classes on these elements because I used tailwind and there were a lot)