Hello - I am having issues with my form being noticed and have gone through the other support topics and haven’t been able to figure out the issue for mine.
https://awesome-shannon-12aaf7.netlify.app/
I have included the hidden input field in the form and the value is the same name as the contact form. Below is the current code for the form itself inside my next.js app. I also have the success action but it is going to 404 which I am assuming is due to Netlify not noticing the form yet as it also doesn’t show up on my dashboard.
<form className={styles.form_container} name="contact" method="POST" data-netlify="true" action="/success" netlify-honeypot="bot-field">
<input type="hidden" name="form-name" value="contact" />
<div className={styles.form_top}>
<div className={styles.form_section}>
<label htmlFor="name">Name</label>
<input id="name" type="text" name="name" autoComplete="name" required />
</div>
<div className={styles.form_section}>
<label htmlFor="email">Email</label>
<input id="email" type="email" name="email" autoComplete="email" required />
</div>
</div>
<div className={styles.form_section}>
<label htmlFor="message">Message</label>
<textarea id="message" name="message" required></textarea>
</div>
<div className={styles.form_submit}>
<button type="submit">Send</button>
</div>
</form>
Thank you for any and all help!