Dear Firebase and Angular gurus. I managed to create a user through createUserWithEmailAndPassword
, but when I register a user, he still enters data about himself, and not just email
and password
. How can I do this? Create a document with the user id and write all the information there, or can Firebase do it smartly?
Asked
Active
Viewed 39 times
0

Oleksandr Tatarinov
- 313
- 1
- 6
- 15
-
2I suppose you can store other (not authentication related) data to firestore database (separated from authentication data). I think your problem is similar to this one: https://stackoverflow.com/questions/30910704/how-do-i-link-each-user-to-their-data-in-firebase – McAwesome Mar 20 '19 at 15:55
-
1"Create a document with the user id" is the way to go. Credentials storage is separated from your document DB and is not "extensible". – Sergiu Paraschiv Mar 20 '19 at 15:56