I want the ability to create default accounts for users as well as setting up their information in the database. This means a user account needs to be created via auth with a username and passsword, and I need to create a new database entry with some basic info about that user.
However, calling createUserWithEmailAndPassword
also authenticates you as that newly created user, which is not ideal. Documentation Here
How can I create users in my web app with createUserWithEmailAndPassword
without it automatically authenticating me as the newly created user?