Incorporating Auth0's provided login and sign-up screen (check it out at https://auth0.com/docs/quickstart/webapp/nextjs/01-login#add-login-to-your-application) into my application has been a seamless process. Upon signup, I have implemented a callback function that creates a profile in my database using the email as the primary key.
However, I've encountered an obstacle on my home screen where there are two buttons: one for "Sign up as admin" and another for "Sign up as a user". My question is, How can I pass information to the Auth0 sign-up screen indicating whether the user clicked "user" or "admin", so that in the callback function I can appropriately create the profile as either "user" or "admin"?