Hi, I am having issues getting this gatsby form to work.
The Form lives on a gatsby portal (another div) and it seems that netlify can not find it? the form doesnt not work at all. The worst part is that i am not getting any issues telling me the issues.
this is the website: https://eloquent-elion-ad9315.netlify.com/
my form code is this:
import React from "react"
import { SubmitButtom } from "../Button"
import { Form } from "./Form.styled"
const ContactForm = () => {
return (
<Form name="contact" method="post" data-netlify-honeypot="bot-field" data-netlify="true" >
<input type="hidden" name="bot-field" />
<input type="hidden" name="form-name" value="contact" />
<label>
<p>Name</p>
<input type="text" name="name" placeholder='First and Last name' required/>
</label>
<label>
<p>Business Name</p>
<input type="text" placeholder='Business name or website link' required/>
</label>
<label>
<p>Phone Number</p>
<input type="text" name="number" placeholder='(305)-000-0000' />
</label>
<label>
<p>Email</p>
<input type="email" name="email" placeholder='Email address' required/>
</label>
<label>
<p>Message</p>
<textarea rows="4" cols="50" name="message" placeholder="In a few words tell me what you are looking for..." required/>
</label>
<SubmitButtom type="submit" >Submit</SubmitButtom>
</Form>
)
}
export default ContactForm
as you see nothing special… I believe its because the form is being called on click from a portal. any idea how to get netlify bot to read it?