Can't see form submissions

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:

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

Hey there,

The snippet of your form appears to be incomplete – I don’t see everything we need, I’m afraid.

The form is processed by your build, shown here in your deploy log but in your site’s code, I can see data-netlify="true".

As per our guide, bullet point 1, this shouldn’t be visible when the form is live.

You’ll want to follow the steps under Thank-you page to ensure that you reach a success page. I see no link to send a user anywhere useful!

If you’re still struggling, can you please try and create a very minimal repro using this guide or another very basic HTML-only form guide? Ideally, this would be unformatted and very simple, just so we can see if it works at all :slight_smile: Thanks!