myBlog의 사용자 인증에 사용되는 Firebase Authentication의 메서드들 입니다.로그인 - signInWithEmailAndPassword로그아웃 - signOut자동 로그인 - onAuthStateChanged비밀번호 재설정 - sendPasswordResetEmail로그인 - signInWithEmailAndPasswordFirebase Authentication에서 제공하는 메서드 createUserWithEmailAndPassword로사용자의 이메일과 비밀번호를 기반으로 새로운 계정을 생성하였습니다.이렇게 생성된 계정에 대해 로그인은 signInWithEmailAndPassword를 사용합니다.signInWithEmailAndPassword는 Firebase Authenticat..