Searching for hours for a working solution. How can I redirect the user to the signup page?
I found an authorize method, which redirects to the login page… But how to redirect to the signup page?
I’m not looking for a way to create a new user.
I’m not looking for a way to post user information (email, password, … etc) to an API.
I’m not using lock…
1 Like
hello @woeterman94
If you are using the new universal login experience, you can use the parameter screen_hint=signup
with the /authorize
endpoint.
Please see the following as well
Hi @sasha.sochka ,
We are building a feature that will let you specify screen_hint=signup in the /authorize parameters and will default to the Signup page when using the New Universal Login Experience
Regards,
Andres
4 Likes
Thanks for sharing that @jatinvaidya !
system
Closed
March 28, 2020, 8:43am
4
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.
Updating this with an FAQ that includes New and Classic UL
Question: How do I link users directly to the hosted signup page?
Answer:
The answer to this question will differ depending on how you have configured your application.
If you are using the New Universal Login Experience :
You can make users land directly on the Signup page instead of the Login page by specifying the screen_hint=signup parameter when redirecting to /authorize . Note that this can be combined with prompt=login , which indicates if you want to always show the authenticatio…