I'm hitting a wall on where to look and could use another brain to throw suggestions on where I've gone wrong or what sort of place I could look for a conflict. I've got forms [using Umbraco Forms package] that should be showing a message on submit but instead all forms are reloading the page when they're submitted. There is no go-to page set, I can't see any issues in the console, network tab, or in Logs.
Am I missing some setup?
I have the 'RenderUmbracoFormDependencies(Url)' at the bottom of the head and am using the 'umb-forms-render-scripts' tag at the bottom of the body. As far as I can tell that's all that's required for setup?
There is no other validation stuff or jquery or anything setup. Literally just installed & put those two snippets into the layout. Using the supplied 'insert form' data type and copy-paste of the RenderForm snippet from documentation.
@await Component.InvokeAsync("RenderForm", new { formId = content.DisplayForm, includeScripts = false })
*tested with & without includeScripts just in case and it changes nothing.