I want to set up my form that sends all of the info from the inputs to my Netlify account. When I do this, I get the error. Page Not Found
Looks like you’ve followed a broken link or entered a URL that doesn’t exist on this site.
I followed the instructions from this page but I am still getting a 404 error:
Here is my code:
<form method="POST" name="contactform" data-netlify="true" data-netlify-honeypot="bot-field" enctype="application/x-www-form-urlencoded" >
<input type="hidden" name="form-name" value="contact" />
<div className="field" >
<label>First Name</label>
<input type="text" name="firstName" id="firstName" required />
</div>
<div className="field">
<label>Last Name</label>
<input type="text" name="lastName" id="lastName" required />
</div>
<div className="field">
<label>Email Address</label>
<input type="email" name="portfolioemail" id="email" />
</div>
<div className="field">
<label>Message</label>
<textarea type="message" name="portfoliomessage" id="message"/>
</div>
<button type="submit">Send</button>
</form>
Here is the github link: