Signup redirect to URL

I would like to disable auth0 default signup and redirect user to my own custom signup page(s), in case he wants to register. How can I accomplish this?

Hey @wazy.software

It really depends on your use case

  1. If you’re using a DB Connection in Auth0, you can disable sign up and use the AuthenticationAPI from a custom form on your site/app:

https://auth0.com/docs/api/authentication#signup

  1. You can also use progressive profiling if your concerned about user drop off during sign up:
  1. You can customise the Universal Login sign up form if you need more fields:
  1. You can redirect users from with rules, using the sign in count as your trigger for a redirect

Hope this helps

I tried disabling signup from auth0 but the Java API throws exception now saying that signups are not permitted. What can I do if I want to use the Java API?