Hi!
I have two applications setup on one Auth0 tenant. Is it possible to setup two different behaviours when entering those apps without modifying application code?
So that when entering Application A - login screen will be displayed, but when entering Application B - signup page will be displayed
I was checking this: https://auth0.com/docs/authenticate/login/auth0-universal-login/universal-login-vs-classic-login/universal-experience#signup and it seems that without proper redirect in the applications itself it is not possible
Hi @robMindfuel,
Welcome back to the Auth0 Community!
You’ve provide the exact documentation needed for your desired use case, but unfortunately this behavior can not be achieved directly through the Auth0 UI, but only by modifying your Application B code when it comes to your /authorize
call to include the screen_hint=signup
parameter.
Even though Auth0 Actions provide a lot of flexibility when it comes to specific configurations, they usually trigger after the login/signup screen has already been displayed and used, so it does not come handy in this case.
I hope this helps!
Best regards,
Remus
1 Like
Thank you @remus.ivan for the confirmation.
Best,
Robert