Hi all,
I am new to using auth0 and have some product-level questions mostly.
I plan to use auth0 to leverage RBAC, and social sign-in mostly. In designing a user registration process, I would like to use my own UI to begin to sign up or sign in. The process is as follows:
- User chooses “Continue with Google” or “Continue with Email”.
- The API will check to see if the user exists (by email).
- For “Continue with Google”, if a user isn’t already registered, the google permission dialogue will be opened and a user will be registered once complete. If a user is registered, the user would be authenticated.
Main question: Is it possible to use such custom UI from the frontend side, and configure a simple endpoint that uses auth0 in the backend and not use the provided ui?
For additional context, I will be using two different clients for this project: next.js and swift. The API will be node.js express.
Thank you in advance.