We are creating a web application that creates the Auth0 user during our signup process. After the user is created, we want to log the user into our website automatically. Right know we are doing this by generating a random password for the user and using that password to log them in the first time. But, in order to log the user in the second time, I believe we need to know the user's password (which we aren't saving and do not know).
Is there a way to log a user in without knowing their password? Is there a better way of going about this login flow? Thanks for the help!