Route to signup page
See original GitHub issueDescribe the problem you’d like to have solved
I would like to link to the signup page.
Describe the ideal solution
Add an API route /api/auth/signup
that redirects. (similar to /api/auth/login)
Alternatives and current work-arounds
Combine the login & signup call-to-action into 1 button.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:2
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Building Login / Signup pages with react, react-router and styled
In part 1 we will go through setting up routes with react-router and ... It's so simple that it only has 3 pages,...
Read more >1 Creating UI for login , signup page and adding Routing
In this video we will create login and signup page for our todo app in react js and firebase#Reactjsconnect with me on -...
Read more >React Routing and Components for Signup and Login
In this post, we will create a user interface in React for authentication (Signup and Login views). Components will not perform any actions ......
Read more >How to redirect signin and signup page by react router
So i have a link "create account" in signin page move to signup page ... or navigate to a "/signup" route for the...
Read more >Creating Backend Routes and User Model for Login and ...
Creating Backend Routes and User Model for Login and Signup in MEAN Stack. Our previous section successfully designed the login and signup page, ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
TBH this seems like a normal enough use case that the lib could/should provide it out of the box.
Hi @thgh - Assuming you’re using the new login experience, you can create your own signup page like so:
Create
pages/api/signup.js
Then link to the signup page:
If you’re using the Classic login experience you might want to use a different
authorizationParams
key and there’s a little more work to do on your custom login page, see: https://community.auth0.com/t/how-do-i-redirect-users-directly-to-the-hosted-signup-page/42520