I have a form on my website which when submitted, gives you a success message of submission. But when I check on my Netlify account, I don’t see the form data, instead what I see is:
“Waiting on those submissions…
We have detected an active form setup but haven’t received submissions yet – hang in there!”.
This has happened for a whole day now and I’m still having the same error. I don’t know if it’s a general problem or it’s just applicable to my account. The site url is:
https://www.nisidev.com/
Below is my simple html form code:
<form name="contact" method="POST" data-netlify="true">
<p>
<label>Your Name: <input pattern="[a-zA-Z ]*" oninvalid="setCustomValidity('Please enter Alphabets only. ')" type="text" placeholder="Enter Your Full Name" name="name" required /></label>
</p>
<p>
<label
>Your Email: <input pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,4}$" oninvalid="setCustomValidity('Please enter E-mail ')" type="email" placeholder="Enter E-Mail" name="email" required
/></label>
</p>
<p>
<label
>Phone Number: <input type="number" placeholder="Enter Phone Number" name="phone" required
/></label>
</p>
<p>
<label>Country: <input pattern="[a-zA-Z ]*" oninvalid="setCustomValidity('Please enter Alphabets only. ')" type="text" placeholder="Enter Your Country of Residence" name="country" required /></label>
</p>
<p>
<label>
Message Title: <input type="text" placeholder="Enter Message Title" name="title" required
/></label>
</p>
<p>
<label
>Message: <textarea placeholder="Enter Message" style="height: 10rem;" name="message" required ></textarea>
</label>
</p>
<input type="submit" value="Send" class="btn-2 btn-dark">
</form>