How to redirect user to hosted signup page?

@zatziky as Ricardo explained we can use config.extraParams to accomplish this in Universal Login and utilize the login_hint parameter for example. The config object contains the set of configuration values that adjusts the behavior of the login page at runtime. You can decode the config object in the login page editor so that you can access the config parameters to use in your page. There is a good explanation here on how to use it for setting SignUp/Login config for hosted login page - #2 by ricardo.batista can you share with me your authentication code and we can take a look if you are having trouble

@MrMatten are you using Lock for iOS? If so, then we can pass the configuration to the Lock initialization using withOptions

.withOptions {
  $0.initialScreen = .Login
}

or are you using the Auth0 SDK for iOS?

1 Like