Craig100
04/19/2024, 9:26 AMSebastiaan
04/19/2024, 9:34 AM<form>
tag look like.. is method
missing perhaps.. or a weird enctype
?Craig100
04/19/2024, 10:30 AM@if (categoryPage.FormPicker.HasValue) {
@await Component.InvokeAsync("RenderForm", new { formId = @categoryPage.FormPicker.Value, theme = "MyTheme", includeScripts = false })
}
else {
<h2 style="text-align: center">@categoryPage.Name Enquiry form not found</h2>
}
Which renders a form tag of:-
<form action="/make-an-enquiry" enctype="multipart/form-data" id="form7030da16429d4f68a135281f91eaf17b" method="post">
The Umbraco Form posts off fine, the issue is with the original form post that calls the page the Umbraco Form is on. When Umbraco Forms does whatever it does to post the Thank You message, that's when it fails.Craig100
04/19/2024, 10:44 AMSebastiaan
04/19/2024, 12:30 PMCraig100
04/19/2024, 2:18 PMCraig100
04/19/2024, 11:56 PM