Hey everyone,
I created a super simple form for my website, which contains 2 text-type fields. Netlify detecting the form, but once I’m submitting the form I am redirected to the 404-page and I can’t see any submissions on the Netlify dashboard.
I took the following steps:
- I tried using different IP
- I looked into the spam folder
- Went over the following guide: [Support Guide] Form problems, form debugging, 404 when submitting
Link to the website: https://www.ornaweber.co.il/
The code:
<form
className={styles.form}
name="contact-form"
netlify-honeypot="bot-field"
data-netlify="true"
method="post"
>
<label>
<Input
className={styles.input}
type="text"
name="name"
placeholder="שם"
data-aos="zoom-in"
/>
</label>
<label>
<Input
className={styles.input}
type="text"
name="phone"
placeholder="טלפון"
/>
</label>
<Button
primary
type="submit"
form="form"
style={{ margin: "0" }}
className={styles.formButton}
>
{button}
</Button>
</form>
(The input is starting with capital letter since I am using emotion to style the input)
I am using gatsby 2.26.1
.
post request information:
Please let me know if there is any more information I can add.
Thanks