- Client makes a request to
/api/auth/signupwith an email and password - Server reads the data, creates the user and then sends an email confirmation
- I then want the client to be redirected to
/auth/confirm-signup
My problem is that if I redirect the client, the request is a "POST" and not a "GET" that will show the client the confirm signup page.
Any ideas on how I could solve this ?