Okay so my website is at: www.dharminchauhan.com. However when I try to fill out the contact form and I hit submit like nothing happens. I have even checked the console log like when I right click and do inspect element. I honestly do not understand why this would occur. I have looked at the tips on the "debugging your forum and I’m pretty sure I followed them. Anyway here is my form code:
my form name is:“contactform”
<form class="container " method="POST" data-netlify="true" name="contactform" enctype="application/x-www-form-urlencoded">
<div class="form-group">
<label for="name">Name</label>
<input class="form-control form-control-lg" name="name" type="text" id="name-input" placeholder="Enter Name" required>
</div>
<div class="form-group">
<label for="email">Email address</label>
<input class="form-control form-control-lg" name="email" type="email" id="email-input" placeholder="Enter Email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control message" id="description-input" name="message" rows="5" placeholder="Write your message..."></textarea>
</div>
<button class="btn btn-primary btn-block submit" type="button" value="Send Message"> Send Message </button>
</form>
Well I’m pretty lost at this point so any help would be greatly appreciated. Also my website does show up on the forms console for Netlify.