I have a basic form built inside my Vue3/Vite site. I have form detection set on my netlify dashboard and I have three other forms on other sites on Netlify that work fine. They are all written in Gatsby/React.
I get a “page not found” error after submission and the form submissions do not show up on my app dashboard. I have tried all the other forum recommendations and nothing seems to work. I have a _redirects file in my public folder as well.
I notice when I view the source the hidden form file is not there. so I added . Tried my more complex form using fetch and also axios ajax and they did not work either. Another forum topic recommended setting this basic form, which wont work, and then using my ajax form again. Also did not work. So, here I am at my wits end. Thanks for looking!
<template>
<form name="motive8contact" method="POST" data-netlify="true">
<input type="hidden" name="form-name" value="motive8contact" />
<input name="contact" />
<button name="submit" type="submit">Submits</button>
</form>
</template>