I am using angular auth0-angular library and try to load the signup page, but it doesn’t redirect me to the sign up page, it always redirect me to login page.
ngOnInit(): void {
console.log(‘toto’);
this.auth.loginWithRedirect({ screen_hint: ‘signup’});
}
I also read here New Universal Login Experience which say to put the flag screen_hint: ‘signup’.
I am using the new universal page, i event also did a console.log(config); to see if the parameter was correctly set, as you can see in the attached image, it’s correctly added, but didn’t redirect to sign up page.
Hi @Neos, try passing in initialScreen: 'signUp' to the loginWithRedirect function instead - if you are able to land on the signup tab successfully, then there is something wrong with your setup and you are still using the Classic Universal Login experience.
Make sure you do not have custom HTML toggled on under the “Login” or “Password Reset” tabs of the Branding > Universal Login > Advanced Options (this may be overriding your New Universal Login experience)