Hi @simbourne,
I went here to try out the form and see this in the network tab:
From our Support Guide this is the section that covers when a form submits, but there’s no submission in the UI:
- The endpoint that you’re submitting to has a redirect. For example, if you’re using JavaScript to submit like:
fetch('/'...
and you’ve a redirect rule like/* /foo 301!
, submissions would probably not work. This is because the submissions are being “consumed” by the redirect rule. Instead, you cans set the endpoint to any other page that doesn’t redirect. Note:200
rewrites could cause problems too. - You’re using some kind of server side rendering to render the endpoint. For example, if you’re rendering the page that you’ve set as the endpoint using a serverless function, you’d not seem the submission in the UI. The solution is similar, set the endpoint to a page or an asset (like
/favicon.ico
) that already exists. - We use Akismet on all form submissions 172. If you see the form in the app.netlify.com 152 UI, but you don’t see any of your test submissions, double check that you aren’t sending junk info in your test submissions or submitting over and over again from the same IP address (which looks spammy and may be hidden in our UI until you choose to view the spam submissions 165).
Could you check to see if any of the 3 options pertain to your form?