Not able to land on Signup tab on Universal Login

Hi Everyone,
Auth0 doesn’t take me to the signup tab.
I have specified the screen hint like this:

            AuthenticationProperties authProperties = new AuthenticationProperties();

            authProperties.Dictionary.Add("screen_hint", "signup");
            authProperties.RedirectUri = "/";
            HttpContext.GetOwinContext().Authentication.Challenge(authProperties, "Auth0");

In the Startup

                    RedirectToIdentityProvider = notification =>
                    {
                        if (notification.ProtocolMessage.RequestType == OpenIdConnectRequestType.Authentication)
                        {
                            var paramsDictionary = notification.OwinContext.Request.Context.Authentication.AuthenticationResponseChallenge?.Properties.Dictionary;

                            if (paramsDictionary != null && paramsDictionary.ContainsKey("screen_hint"))
                            {
                                notification.ProtocolMessage.SetParameter("screen_hint", paramsDictionary["screen_hint"]);
                            }
                        }

The Universal Login takes me to the Login tab:

Wondering if I am doing anything wrong. Any insights would be really appreciated!
Thank you!

Hi @ashesh.subedi,

Welcome to the Auth0 Community!

It looks like you are using Classic Universal Login, which does not support the screen_hint param. You can switch to New Universal Login, OR set this up for Classic login by following this FAQ:

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