Show sign up form by default

I am setting up the initial integration for a Bubble.io app I am building.

When I activate the workflow “signup/login through social network” which is how I connect it to the auth0 process, the screen comes up with a login form and you have to click a link below the form to switch to the signup form in order to input your email or use SSO to register on the site.

My goal is to streamline the sign up flow.

Is there a way to show the sign up form by default when it first loads?

Hi @mc3,

Welcome to the Auth0 Community!

Yes, this is possible by calling the /authorize endpoint with the screen_hint=signup query parameter.

It would look something like the following:

https://{yourDomain}/authorize?
    response_type=code&
    client_id={yourClientId}&
    redirect_uri={https://yourApp/callback}&
    scope={scope}&
    state={state}&
    screen_hint=signup

Please note that this will only work with the New Universal Login and will not work with the Classic Universal Login experience.

See this doc to learn more.

Please let me know if you have any questions.

Thanks,
Rueben

1 Like

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