hi.I design success page in webflow but how can I connect it with netlify
I type action but I see only* this is a reserved name* how can I solve it
I tried it but it does not connect to my success page deisgned in webflow
hi.I design success page in webflow but how can I connect it with netlify
@maymemyintzaw1997 There is no page at that URL on your site, you can see this by going to:
I am sorry I mean when i hit submit I want to show success message designed in webflow Projects - Google Chrome - 26 September 2024 | Loom I do not want to show default netlify success page
pls suggest what I have to fix
@maymemyintzaw1997 I understand what you want.
I provided the answer, but obviously not enough detail for your skill level.
I’ll break it down in detail:
Note:
I went to your site and looked at the form here:
https://verdant-belekoy-ac8f93.netlify.app/projects
The action
of the form is set to /pages/success
This is correct, as per the Netlify documentation for a Custom success page:
https://docs.netlify.com/forms/setup/#custom-success-page
Upon submission, the user does end up at that URL:
https://verdant-belekoy-ac8f93.netlify.app/pages/success
This is just standard HTML form behavior though, as the browser does a POST to that URL:
Currently the user is seeing the default Netlify success message:
As mentioned in my last post, this is because you quite simply have no page at /pages/success
If you try to visit that URL directly you will see that it is a 404
:
https://verdant-belekoy-ac8f93.netlify.app/pages/success
If you want the URL of /pages/success
to “be your success page”, then you would need to ensure that a page is created at that URL. So if you have “success page” in Webflow you should set its URL to be /pages/success
or if you want it to go to a different URL you would change the form action accordingly.