Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

361
Views
How can I launch the registration page using @auth0/auth0-react?

I've been stuck trying to get the sign up page (registration) to launch by default using @auth0/auth0-react. In the past, I used to send mode which used to work in auth0-js.

I've tried the following to no avail:

 const { loginWithRedirect } = useAuth0();
 loginWithRedirect({
      // screen_hint: 'signUp'
      screen_hint: 'signup',
      ui_locales: 'es',
    });

How can I make it work again?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

According to https://community.auth0.com/t/can-not-get-screen-hint-to-work/46519, the problem is that in the Admin panel I have selected the classic experience, whereas these parameters only work for the new experience.

Nonetheless, you can pass any arbitrary variable and it will be sent as a GET parameter. Therefore, we can pass our traditional mode and it will work:

  const { loginWithRedirect } = useAuth0();

  loginWithRedirect({
      screen_hint: 'signup',
      ui_locales: 'es',
      mode: 'signUp',
    });

Check if you have the classic or new experience in your dashboard by going to:

  • Branding -> Universal Login enter image description here

enter image description here

As you can see, I had the classic experience enabled.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!