비밀번호가 있는 신규 사용자 계정을 만들려면 앱의 로그인 페이지에서 다음 절차를 완료합니다.
신규 사용자가 앱의 가입 양식을 사용하여 가입하면 앱에서 요구하는 새 계정 유효성 검사 단계를 완료합니다. 검사 항목에는 신규 계정의 비밀번호를 정확하게 입력했는지, 비밀번호가 복잡성 조건을 충족하는지 등이 있습니다.
다음과 같이 신규 사용자의 이메일 주소와 비밀번호를 createUserWithEmailAndPassword에 전달하여 신규 계정을 생성합니다.
Web
import{getAuth,createUserWithEmailAndPassword}from"firebase/auth";constauth=getAuth();createUserWithEmailAndPassword(auth,email,password).then((userCredential)=>{// Signed up constuser=userCredential.user;// ...}).catch((error)=>{consterrorCode=error.code;consterrorMessage=error.message;// ..});
firebase.auth().createUserWithEmailAndPassword(email,password).then((userCredential)=>{// Signed in varuser=userCredential.user;// ...}).catch((error)=>{varerrorCode=error.code;varerrorMessage=error.message;// ..});
신규 계정 생성에 성공하면 사용자가 자동으로 로그인됩니다. 로그인한 사용자의 세부정보를 가져오는 방법은 아래의 '다음 단계' 섹션에서 확인하세요.
이 단계에서 오류를 파악해서 처리할 수도 있습니다. 오류 코드 목록은 인증 참고 문서에서 확인할 수 있습니다.
이메일 주소와 비밀번호로 사용자 로그인
비밀번호로 사용자 로그인을 처리하는 절차는 신규 계정을 생성하는 절차와 비슷합니다. 앱의 로그인 페이지에서 다음 절차를 따르세요.
사용자가 앱에 로그인하면 다음과 같이 사용자의 이메일 주소와 비밀번호를 signInWithEmailAndPassword에 전달합니다.
Web
import{getAuth,signInWithEmailAndPassword}from"firebase/auth";constauth=getAuth();signInWithEmailAndPassword(auth,email,password).then((userCredential)=>{// Signed in constuser=userCredential.user;// ...}).catch((error)=>{consterrorCode=error.code;consterrorMessage=error.message;});
firebase.auth().signInWithEmailAndPassword(email,password).then((userCredential)=>{// Signed invaruser=userCredential.user;// ...}).catch((error)=>{varerrorCode=error.code;varerrorMessage=error.message;});
Firebase Authentication 비밀번호 정책은 다음과 같은 비밀번호 요구사항을 지원합니다.
소문자 필요
대문자 필요
숫자 필요
영숫자가 아닌 문자 필요
다음 문자는 영숫자가 아닌 문자 요구사항을 충족합니다.
^ $ * . [ ] { } ( ) ? " ! @ # % & / \ , > < ' : ; | _ ~
비밀번호 최소 길이(6~30자, 기본값은 6)
비밀번호 최대 길이(최대 4,096자)
다음 두 가지 모드로 비밀번호 정책 적용을 사용 설정할 수 있습니다.
필수: 사용자가 정책을 준수하는 비밀번호로 업데이트할 때까지 가입 시도가 실패합니다.
알림: 사용자가 정책을 준수하지 않는 비밀번호를 사용하여 가입할 수 있습니다. 이 모드를 사용할 때는 클라이언트 측에서 사용자의 비밀번호가 정책을 준수하는지 확인하고 정책을 준수하지 않는 경우 사용자에게 비밀번호를 업데이트하라는 메시지를 어떤 방식으로든 표시해야 합니다.
신규 사용자는 항상 해당 정책에 따라 비밀번호를 선택해야 합니다.
활성 사용자가 있는 경우 비밀번호가 정책을 준수하지 않는 사용자의 액세스를 차단하려는 경우가 아니면 로그인 강제 업그레이드를 사용 설정하지 않는 것이 좋습니다. 대신 사용자가 현재 비밀번호로 로그인할 수 있게 해주고 비밀번호에 부족한 요구사항을 알리는 알림 모드를 사용하세요.
conststatus=awaitvalidatePassword(getAuth(),passwordFromUser);if(!status.isValid){// Password could not be validated. Use the status to show what// requirements are met and which are missing.// If a criterion is undefined, it is not required by policy. If the// criterion is defined but false, it is required but not fulfilled by// the given password. For example:constneedsLowerCase=status.containsLowercaseLetter!==true;}
권장: 이메일 열거 보호 사용 설정
이메일 주소가 등록되어 있어야 하는데(예: 이메일 주소와 비밀번호로 로그인할 때) 등록되지 않은 경우 또는 이메일 주소를 사용해서는 안 되는데(예: 사용자의 이메일 주소를 변경할 때) 등록된 경우, 이메일 주소를 파라미터로 사용하는 일부 Firebase Authentication 메서드에서 특정 오류가 발생합니다.
이는 사용자에게 특정 조치를 제안하는 데 유용할 수 있지만 사용자가 등록한 이메일 주소를 악의적인 행위자가 발견하는 데 악용될 수도 있습니다.
이러한 위험을 완화하려면 Google Cloud gcloud 도구를 사용하여 프로젝트에 이메일 열거 보호 기능을 사용 설정하는 것이 좋습니다. 이 기능을 사용 설정하면 Firebase Authentication의 오류 보고 동작이 변경됩니다. 앱이 더 구체적인 오류에 의존하지 않는지 확인하세요.
다음 단계
사용자가 처음으로 로그인하면 신규 사용자 계정이 생성되고 사용자가 로그인할 때 사용한 사용자 인증 정보(사용자 이름과 비밀번호, 전화번호 또는 인증 제공업체 정보)에 연결됩니다. 이 신규 계정은 Firebase 프로젝트에 저장되며 사용자의 로그인 방법과 무관하게 프로젝트 내의 모든 앱에서 사용자 본인 확인에 사용할 수 있습니다.
앱에서 사용자의 인증 상태를 파악할 때 권장하는 방법은 Auth 객체에 관찰자를 설정하는 것입니다. 그러면 User 객체로부터 사용자의 기본 프로필 정보를 가져올 수 있습니다. 사용자 관리를 참조하세요.
Firebase Realtime Database와 Cloud Storage보안 규칙의 auth 변수에서 로그인한 사용자의 고유 사용자 ID를 가져온 후 이 ID를 통해 사용자가 액세스할 수 있는 데이터를 관리할 수 있습니다.
[null,null,["최종 업데이트: 2025-08-19(UTC)"],[],[],null,["# Authenticate with Firebase using Password-Based Accounts using Javascript\n\nYou can use Firebase Authentication to let your users authenticate with\nFirebase using their email addresses and passwords, and to manage your app's\npassword-based accounts.\n\nBefore you begin\n----------------\n\n1. [Add Firebase to your JavaScript project](/docs/web/setup).\n2. If you haven't yet connected your app to your Firebase project, do so from the [Firebase console](//console.firebase.google.com/).\n3. Enable Email/Password sign-in:\n 1. In the [Firebase console](//console.firebase.google.com/), open the **Auth** section.\n 2. On the **Sign in method** tab, enable the **Email/password** sign-in method and click **Save**.\n\nCreate a password-based account\n-------------------------------\n\nTo create a new user account with a password, complete the following steps in\nyour app's sign-up page:\n\n1. When a new user signs up using your app's sign-up form, complete any new account validation steps that your app requires, such as verifying that the new account's password was correctly typed and meets your complexity requirements.\n2. Create a new account by passing the new user's email address and password to `createUserWithEmailAndPassword`: \n\n ### Web\n\n ```javascript\n import { getAuth, createUserWithEmailAndPassword } from \"firebase/auth\";\n\n const auth = getAuth();\n createUserWithEmailAndPassword(auth, email, password)\n .then((userCredential) =\u003e {\n // Signed up \n const user = userCredential.user;\n // ...\n })\n .catch((error) =\u003e {\n const errorCode = error.code;\n const errorMessage = error.message;\n // ..\n });https://github.com/firebase/snippets-web/blob/467eaa165dcbd9b3ab15711e76fa52237ba37f8b/snippets/auth-next/email/auth_signup_password.js#L8-L21\n ```\n\n ### Web\n\n ```javascript\n firebase.auth().createUserWithEmailAndPassword(email, password)\n .then((userCredential) =\u003e {\n // Signed in \n var user = userCredential.user;\n // ...\n })\n .catch((error) =\u003e {\n var errorCode = error.code;\n var errorMessage = error.message;\n // ..\n });https://github.com/firebase/snippets-web/blob/467eaa165dcbd9b3ab15711e76fa52237ba37f8b/auth/email.js#L28-L38\n ```\n If the new account was created, the user is signed in automatically. Have a look at the Next steps section below to get the signed in user details.\n\n\n This is also where you can catch and handle errors. For a list of error codes have a look at the [Auth Reference Docs](/docs/reference/js/auth#autherrorcodes).\n\n| To protect your project from abuse, Firebase limits the number of new email/password and anonymous sign-ups that your application can have from the same IP address in a short period of time. You can request and schedule temporary changes to this quota from the [Firebase console](//console.firebase.google.com/project/_/authentication/providers).\n\nSign in a user with an email address and password\n-------------------------------------------------\n\nThe steps for signing in a user with a password are similar to the steps for\ncreating a new account. In your app's sign-in page, do the following:\n\n1. When a user signs in to your app, pass the user's email address and password to `signInWithEmailAndPassword`: \n\n ### Web\n\n ```javascript\n import { getAuth, signInWithEmailAndPassword } from \"firebase/auth\";\n\n const auth = getAuth();\n signInWithEmailAndPassword(auth, email, password)\n .then((userCredential) =\u003e {\n // Signed in \n const user = userCredential.user;\n // ...\n })\n .catch((error) =\u003e {\n const errorCode = error.code;\n const errorMessage = error.message;\n });https://github.com/firebase/snippets-web/blob/467eaa165dcbd9b3ab15711e76fa52237ba37f8b/snippets/auth-next/email/auth_signin_password.js#L8-L20\n ```\n\n ### Web\n\n ```javascript\n firebase.auth().signInWithEmailAndPassword(email, password)\n .then((userCredential) =\u003e {\n // Signed in\n var user = userCredential.user;\n // ...\n })\n .catch((error) =\u003e {\n var errorCode = error.code;\n var errorMessage = error.message;\n });https://github.com/firebase/snippets-web/blob/467eaa165dcbd9b3ab15711e76fa52237ba37f8b/auth/email.js#L11-L20\n ```\n Have a look at the Next steps section below to get the signed in user details.\n\n\n This is also where you can catch and handle errors. For a list of error codes have a look at the [Auth Reference Docs](/docs/reference/js/auth#autherrorcodes).\n\nRecommended: Set a password policy\n----------------------------------\n\nYou can improve account security by enforcing password complexity requirements.\n\nTo configure a password policy for your project, open the **Password policy**\ntab on the Authentication Settings page of the Firebase console:\n\n[Authentication Settings](//console.firebase.google.com/project/_/authentication/settings)\n\nFirebase Authentication password policies support the following password requirements:\n\n- Lowercase character required\n\n- Uppercase character required\n\n- Numeric character required\n\n- Non-alphanumeric character required\n\n The following characters satisfy the non-alphanumeric character requirement:\n `^ $ * . [ ] { } ( ) ? \" ! @ # % & / \\ , \u003e \u003c ' : ; | _ ~`\n- Minimum password length (ranges from 6 to 30 characters; defaults to 6)\n\n- Maximum password length (maximum length of 4096 characters)\n\nYou can enable password policy enforcement in two modes:\n\n- **Require**: Attempts to sign up fail until the user updates to a password\n that complies with your policy.\n\n- **Notify**: Users are allowed to sign up with a non-compliant password. When\n using this mode, you should check if the user's password complies with the\n policy on the client side and prompt the user in some way to update their\n password if it does not comply.\n\nNew users are always required to choose a password that complies with your\npolicy.\n\nIf you have active users, we recommend not enabling force upgrade on sign in\nunless you intend to block access to users whose passwords don't comply with\nyour policy. Instead, use notify mode, which allows users to sign in with their\ncurrent passwords, and inform them of the requirements their password lacks.\n\n### Validating a password on the client\n\n import { getAuth, validatePassword } from \"firebase/auth\";\n\n const status = await validatePassword(getAuth(), passwordFromUser);\n if (!status.isValid) {\n // Password could not be validated. Use the status to show what\n // requirements are met and which are missing.\n\n // If a criterion is undefined, it is not required by policy. If the\n // criterion is defined but false, it is required but not fulfilled by\n // the given password. For example:\n const needsLowerCase = status.containsLowercaseLetter !== true;\n }\n\nRecommended: Enable email enumeration protection\n------------------------------------------------\n\nSome Firebase Authentication methods that take email addresses as parameters throw\nspecific errors if the email address is unregistered when it must be registered\n(for example, when signing in with an email address and password), or registered\nwhen it must be unused (for example, when changing a user's email address).\nWhile this can be helpful for suggesting specific remedies to users, it can also\nbe abused by malicious actors to discover the email addresses registered by your\nusers.\n\nTo mitigate this risk, we recommend you [enable email enumeration protection](https://cloud.google.com/identity-platform/docs/admin/email-enumeration-protection)\nfor your project using the Google Cloud `gcloud` tool. Note that enabling this\nfeature changes Firebase Authentication's error reporting behavior: be sure your app\ndoesn't rely on the more specific errors.\n\nNext steps\n----------\n\nAfter a user signs in for the first time, a new user account is created and\nlinked to the credentials---that is, the user name and password, phone\nnumber, or auth provider information---the user signed in with. This new\naccount is stored as part of your Firebase project, and can be used to identify\na user across every app in your project, regardless of how the user signs in.\n\n- In your apps, the recommended way to know the auth status of your user is to\n set an observer on the `Auth` object. You can then get the user's\n basic profile information from the `User` object. See\n [Manage Users](/docs/auth/web/manage-users).\n\n- In your Firebase Realtime Database and Cloud Storage\n [Security Rules](/docs/database/security/user-security), you can\n get the signed-in user's unique user ID from the `auth` variable,\n and use it to control what data a user can access.\n\nYou can allow users to sign in to your app using multiple authentication\nproviders by [linking auth provider credentials to an\nexisting user account.](/docs/auth/web/account-linking)\n\nTo sign out a user, call [`signOut`](/docs/reference/js/auth#signout): \n\n### Web\n\n```javascript\nimport { getAuth, signOut } from \"firebase/auth\";\n\nconst auth = getAuth();\nsignOut(auth).then(() =\u003e {\n // Sign-out successful.\n}).catch((error) =\u003e {\n // An error happened.\n});https://github.com/firebase/snippets-web/blob/467eaa165dcbd9b3ab15711e76fa52237ba37f8b/snippets/auth-next/index/auth_sign_out.js#L8-L15\n```\n\n### Web\n\n```javascript\nfirebase.auth().signOut().then(() =\u003e {\n // Sign-out successful.\n}).catch((error) =\u003e {\n // An error happened.\n});https://github.com/firebase/snippets-web/blob/467eaa165dcbd9b3ab15711e76fa52237ba37f8b/auth/index.js#L33-L37\n```"]]