Hello,
As my title states, I cannot make Netlify forms work with my form.
I followed many forum threads and searched online, and I couldn’t make it work.
I tried adding all the attributes, adding hidden input fields, using the example form from the docs, and verifying all my settings were set correctly. Nothing seems to work.
@ChenBr When you say you’ve read various forum threads, have you read this one?
Specifically this section:
Since you mention using Vue, my guess is that your pages are being client side rendered and thus that there is no HTML form within your HTML file/s for Netlify to have discovered during their post build processing.
There is no <form> there at all obviously, as it’s being generated at runtime via the Vue code.
As mentioned in the text from that thread, you will need to have a HTML file in the build output that contains a version of the form, so that Netlify can detect it.