0
0
Firebasecloud~5 mins

Email/password login in Firebase - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is Email/Password login in Firebase?
Email/Password login is a method where users sign in using their email address and a password they create. Firebase handles the authentication securely.
Click to reveal answer
intermediate
How does Firebase protect user passwords in Email/Password login?
Firebase stores passwords securely by hashing them, so the actual password is never saved. This keeps user data safe even if the database is accessed.
Click to reveal answer
beginner
What is the first step to enable Email/Password login in Firebase?
You must enable the Email/Password sign-in method in the Firebase Console under Authentication settings.
Click to reveal answer
beginner
What happens if a user tries to sign in with an email that is not registered?
Firebase returns an error indicating the user does not exist, prompting the user to register first.
Click to reveal answer
beginner
Why is Email/Password login considered user-friendly?
Because most people are familiar with using an email and password to access services, making it easy to understand and use.
Click to reveal answer
What must you do first to use Email/Password login in Firebase?
AEnable Email/Password sign-in in Firebase Console
BWrite custom backend code
CCreate a new Firebase project
DInstall a third-party plugin
How does Firebase store passwords for Email/Password login?
AIn plain text
BEncrypted with a reversible key
CHashed securely
DNot stored at all
What error occurs if a user enters a wrong password?
AWrong password error
BNo error, login succeeds
CAccount locked
DUser not found
Which Firebase service handles Email/Password login?
ACloud Firestore
BFirebase Authentication
CFirebase Hosting
DFirebase Functions
Can users reset their password if they forget it in Email/Password login?
APasswords reset automatically every month
BNo, they must create a new account
COnly admins can reset passwords
DYes, via Firebase password reset email
Explain how to set up Email/Password login in Firebase from start to finish.
Think about the steps from enabling the feature to handling user actions.
You got /5 concepts.
    Describe how Firebase keeps user passwords safe in Email/Password login.
    Focus on what happens to the password after user submits it.
    You got /4 concepts.