I am using Auth0
for my authentication on a React + C# asp.net core page.
I would like the users to click "Sign up" and it direct them to the Auth0 Universal Sign up page. I'm able to direct users to the Login Page with this code:
await loginWithRedirect({
appState: { targetUrl: location.pathname || window.location.pathname },
});
Using the example react-auth0-spa.js and @auth0/auth0-spa-js library.
However, I can't see any examples online on how to direct a user directly to the sign up (not login) page.