@@ -20,13 +20,13 @@ function FindId({ onClose, onSwitchToLogin }) {
2020 let newErrors = { } ;
2121
2222 if ( ! isNotEmpty ( email ) ) {
23- newErrors . email = "이메일을 입력해주세요." ;
23+ newErrors . email = "이메일을 입력해주세요." ;
2424 } else if ( ! isEmail ( email ) ) {
25- newErrors . email = "올바른 이메일 형식이 아닙니다." ;
25+ newErrors . email = "올바른 이메일 형식이 아닙니다." ;
2626 }
2727
2828 if ( ! isNotEmpty ( birthDate ) ) {
29- newErrors . birthDate = "생년월일을 선택해주세요." ;
29+ newErrors . birthDate = "생년월일을 선택해주세요." ;
3030 }
3131
3232 setErrors ( newErrors ) ;
@@ -40,10 +40,10 @@ function FindId({ onClose, onSwitchToLogin }) {
4040 if ( result && result . userId ) {
4141 setFoundId ( result . userId ) ;
4242 } else {
43- alert ( "일치하는 정보가 없습니다." ) ;
43+ alert ( "일치하는 정보가 없습니다." ) ;
4444 }
4545 } catch ( error ) {
46- alert ( "찾기 실패: 서버 오류가 발생했습니다." ) ;
46+ alert ( "찾기 실패: 서버 오류가 발생했습니다." ) ;
4747 }
4848 } ;
4949
@@ -66,7 +66,7 @@ function FindId({ onClose, onSwitchToLogin }) {
6666 </ button >
6767
6868 < div className = "login-popup-header" >
69- < h2 className = "login-popup-title" > 아이디 찾기 성공</ h2 >
69+ < h2 className = "login-popup-title" > 아이디 찾기 성공</ h2 >
7070 </ div >
7171
7272 < div style = { { padding : "30px 20px" , textAlign : "center" } } >
@@ -83,7 +83,7 @@ function FindId({ onClose, onSwitchToLogin }) {
8383 < p
8484 style = { { marginBottom : "10px" , color : "#666" , fontSize : "16px" } }
8585 >
86- 회원님의 아이디를 찾았습니다!
86+ 회원님의 아이디를 찾았습니다!
8787 </ p >
8888
8989 < div
@@ -103,7 +103,7 @@ function FindId({ onClose, onSwitchToLogin }) {
103103 className = "login-popup-submit-btn"
104104 onClick = { onSwitchToLogin }
105105 >
106- 로그인하러 가기
106+ 로그인하러 가기
107107 </ button >
108108 </ div >
109109 </ div >
@@ -121,17 +121,17 @@ function FindId({ onClose, onSwitchToLogin }) {
121121 X
122122 </ button >
123123 < div className = "login-popup-header" >
124- < h2 className = "login-popup-title" > 아이디 찾기</ h2 >
124+ < h2 className = "login-popup-title" > 아이디 찾기</ h2 >
125125 </ div >
126126
127127 < form className = "login-popup-form" onSubmit = { handleSubmit } >
128128 < div className = "login-popup-input-group" >
129129 < label htmlFor = "email" className = "login-popup-label" >
130- 이메일
130+ 이메일
131131 </ label >
132132 < input
133133 type = "email"
134- placeholder = "이메일을 입력하세요"
134+ placeholder = "이메일을 입력하세요"
135135 className = { `login-popup-input ${
136136 errors . email ? "input-error" : ""
137137 } `}
@@ -148,12 +148,12 @@ function FindId({ onClose, onSwitchToLogin }) {
148148
149149 < div className = "login-popup-input-group" >
150150 < label htmlFor = "birthDate" className = "login-popup-label" >
151- 생년월일
151+ 생년월일
152152 </ label >
153153 < input
154154 name = "birthDate"
155155 type = "date"
156- placeholder = "생년월일 입력"
156+ placeholder = "생년월일 입력"
157157 className = { `login-popup-input ${
158158 errors . birthDate ? "input-error" : ""
159159 } `}
@@ -167,7 +167,7 @@ function FindId({ onClose, onSwitchToLogin }) {
167167 ) }
168168 </ div >
169169
170- < button className = "login-popup-submit-btn" > 아이디 찾기</ button >
170+ < button className = "login-popup-submit-btn" > 아이디 찾기</ button >
171171 </ form >
172172
173173 < div className = "login-popup-footer" >
@@ -176,7 +176,7 @@ function FindId({ onClose, onSwitchToLogin }) {
176176 className = "login-popup-footer-text"
177177 style = { { marginTop : 5 , cursor : "pointer" } }
178178 >
179- 로그인으로 돌아가기
179+ 로그인으로 돌아가기
180180 </ span >
181181 </ div >
182182 </ div >
0 commit comments