Hi when people fill the form on my website I don’t get any requests, Need help please

PLEASE help us help you by writing a good post!

  • We need to know your netlify site name is msadrivingschoolnottingham

  • Domain name is msadrivingschoolnotts.com

    The issue is, when people fill the form for requesting call back i don’t receive any notification/request

@M_AM Your form submission results in a 404:

image

Going to that form and looking at the HTML shows:

<form name="contact" netlify netlify-honeypot="bot-field" hidden>
  <input type="text" name="bot-field" />
  <input type="text" name="name" />
  <input type="email" name="email" />
  <input type="tel" name="phone" />
  <input type="text" name="subject" />
  <textarea name="message"></textarea>
</form>

The POST body contained:

The documentation here:

Says:

If you submit your form with AJAX, make sure that the honeypot field name is included in the body of the POST request. This happens automatically if you use FormData() to encode the body of the request.