How do I send a user to the sign up form?

I am integrating auth0 into a Bubble app using the API connector and have the process connected. The sign up works, but the page it redirect to defaults to a login page (not sign up).

How can I make the sign up form show first?

Post is related to the same question listed here:

Hi @mc3,

Using the New Universal Login experience, you can specify the screen_hint=signup query parameter in the login request to send the user directly to the Sign Up page.

For example:

https://testrueben.auth0.com/authorize?
    response_type=code&
    client_id=HICy2jI4atNE6xjgFr7VrYYoUyiB5dbI&
    redirect_uri=https://youtube.com&
    scope={scope}&
    audience={apiAudience}&
    state={state}&
    screen_hint=signup

Reference: New Universal Login Experience

Please let me know if you have any questions.

Thanks,
Rueben

@rueben.tiow is there any way to navigate directly to the Password Reset page in the New Universal Login? The same way initialScreen=forgotPassword worked for the Classic Universal Login?

Hi @teddy.ondieki,

To the best of my knowledge, there is no way to directly navigate to the Password reset page in the New Universal Login.

This was also mentioned in a related community post:

Thanks,
Rueben

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.