diff --git a/assets/icons/icon_visible_eye.svg b/assets/icons/icon_visible_eye.svg new file mode 100644 index 00000000..43a5af17 --- /dev/null +++ b/assets/icons/icon_visible_eye.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/images/img_preview.png b/assets/images/img_preview.png new file mode 100644 index 00000000..15218ffc Binary files /dev/null and b/assets/images/img_preview.png differ diff --git a/assets/logos/logo_lg.png b/assets/logos/logo_lg.png index 41e594cd..b6888678 100644 Binary files a/assets/logos/logo_lg.png and b/assets/logos/logo_lg.png differ diff --git a/assets/logos/logo_sm.png b/assets/logos/logo_sm.png index 7296dda9..fbd19e37 100644 Binary files a/assets/logos/logo_sm.png and b/assets/logos/logo_sm.png differ diff --git a/assets/logos/logo_typo.png b/assets/logos/logo_typo.png deleted file mode 100644 index 7e94a17d..00000000 Binary files a/assets/logos/logo_typo.png and /dev/null differ diff --git a/constants/message.js b/constants/message.js new file mode 100644 index 00000000..6affe09b --- /dev/null +++ b/constants/message.js @@ -0,0 +1,18 @@ +export const EMAIL_VALIDATION = Object.freeze({ + invalid_email: '잘못된 이메일 형식입니다.', + required_email: '이메일을 입력해주세요.', +}); + +export const NICKNAME_VALIDATION = Object.freeze({ + required_nickname: '닉네임을 입력해주세요.', +}); + +export const PASSWORD_VALIDATION = Object.freeze({ + required_password: '비밀번호를 입력해주세요.', + invalid_password: '비밀번호를 8자 이상 입력해주세요.', +}); + +export const CONFIRM_PASSWORD_VALIDATION = Object.freeze({ + required_confirm_password: '비밀번호를 다시 입력해주세요.', + not_matched_password: '비밀번호가 일치하지 않습니다.', +}); diff --git a/constants/symbol.js b/constants/symbol.js new file mode 100644 index 00000000..65fc2717 --- /dev/null +++ b/constants/symbol.js @@ -0,0 +1,5 @@ +export const SYMBOL = Object.freeze({ + email_validate_regex: /^[^\s@]+@[^\s@]+\.[^\s@]+$/, + password_min_length: 8, + empty_message: '', +}); diff --git a/index.html b/index.html index 9b934db3..ae5559c2 100644 --- a/index.html +++ b/index.html @@ -3,18 +3,27 @@ - 판다마켓 - + + + + + + - - - + + - + + + + + + + - + + + + 판다마켓
- 로그인 + 로그인