I'm using Firebase's createUserWithEmailAndPassword()
method to register users, and I'd like to enforce password and email rules on the client side. While I've observed that passwords with fewer than 6 characters result in an error:
Password should be at least 6 characters
I haven't found comprehensive rules for password and email validation in the official documentation.
Can anyone provide or point me to the exact validation rules for both password and email when using this Firebase method?