Redirect on form success and then display alert

I’v successfully setup reset password functionality following the two tutorials in Docs.
I am stuck trying to work out a way t

o redirect the user when the reset password form submit is successful and then display an Alert on the redirect page.
I can get the alert to work on the current page without redirect, but I need a redirect first and then an alert display on the redirect page.

I’ve tried using Browser goto the redirect url, but I can’t get the alert then display after it.

The actions you set there can not control things on another page.
You can use a url param like ?alert=1 in the redirect url and check for that url value on the second page, then show the alert there.

1 Like

Excellent. I’ll do that. Thanks Teodor.