The form is not submitted or shown in Netlify’s UI, 404 redirect.
Yet, it is recognized because the hidden element is added and netlify’s attribute is removed:
<form method="post" name="contact"><input type="hidden" name="form-name" value="contact">
<input name="name" type="text" required="" placeholder="Name" style="">
<input name="email" type="email" required="" placeholder="Email" style="">
<button class="cta-btn">Pick Your Gift Meal</button>
</form>
For your convenience I put my original form here:
<form name="contact" netlify>
<input
name="name"
type="text"
required
placeholder="Name"
/>
<input
name="email"
type="email"
required
placeholder="Email"
/>
<button class="cta-btn">Pick Your Gift Meal</button>
</form>
I’ve tried multiple versions of the form, yet nothing. I have enabled form detection and redeployed my website, still nothing. I’ve read all the posts highlighting obvious form mistakes, none helped.
Don’t redirect me to another posts, I’ve read multiple support tickets and documentation – it didn’t help.
I even tried deploying similar website that I know by fact should work on my account, and yet, the same 404 issue. (I know by fact because I’m following a course, I have the copy of the exact same code, and it worked there, yet not on my account. The original is: https://omnifood.dev (original), and my copy https://frolicking-taiyaki-dafaeb.netlify.app ).
That’s most of what I know.