diff --git a/public/sign/phase.svg b/public/sign/phase.svg new file mode 100644 index 0000000..3b778ae --- /dev/null +++ b/public/sign/phase.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/components/home/MainHeader.tsx b/src/components/home/MainHeader.tsx index 8cb23f8..9cb0165 100644 --- a/src/components/home/MainHeader.tsx +++ b/src/components/home/MainHeader.tsx @@ -6,7 +6,7 @@ const MainHeader = () => { const router = useRouter(); return (
-
+
diff --git a/src/components/home/MainPageIndex.tsx b/src/components/home/MainPageIndex.tsx index 9be3455..8b583a3 100644 --- a/src/components/home/MainPageIndex.tsx +++ b/src/components/home/MainPageIndex.tsx @@ -16,7 +16,6 @@ const MainPageIndex = () => { return (
-
{/* 핸드폰 기본 상단 레이아웃 자리 */} diff --git a/src/components/home/weekSchedule/WeekSchedule.tsx b/src/components/home/weekSchedule/WeekSchedule.tsx index c1bd052..cd4353f 100644 --- a/src/components/home/weekSchedule/WeekSchedule.tsx +++ b/src/components/home/weekSchedule/WeekSchedule.tsx @@ -39,7 +39,7 @@ const WeekSchedule = () => {
{daysOfWeek.map((day, i) => (
{ 3 단계
-
-
- 한번 더 확인이 필요해요. +
+ image +
+
+ 한번 더 확인이 필요해요. +
diff --git a/src/components/sign/signup/PasswordVerification.tsx b/src/components/sign/signup/PasswordVerification.tsx index adad434..4bb6bf4 100644 --- a/src/components/sign/signup/PasswordVerification.tsx +++ b/src/components/sign/signup/PasswordVerification.tsx @@ -55,12 +55,12 @@ const PasswordVerification = ({ onNext, applyValues }: PasswordVerificationProps }, [selectedJob]); const handlePasswordChange = (e: React.ChangeEvent) => { - setPasswordError(false); const newPassword = e.target.value; setPassword(newPassword); + checkValidPassword(newPassword); }; - const checkValidPassword = () => { + const checkValidPassword = (password: string) => { const passwordRegex = /^(?=.*[0-9])(?=.*[a-zA-Z])(?=.*[@#$%^&+=!])(?=\S+$).{8,16}$/; if (!passwordRegex.test(password)) { setPasswordError(true); @@ -99,9 +99,12 @@ const PasswordVerification = ({ onNext, applyValues }: PasswordVerificationProps 3 단계
-
-
- 거의 다 완료되었어요! +
+ image +
+
+ 거의 다 완료되었어요! +
@@ -199,7 +202,6 @@ const PasswordVerification = ({ onNext, applyValues }: PasswordVerificationProps placeholder="비밀번호를 입력해주세요." value={password} onChange={handlePasswordChange} - onBlur={checkValidPassword} />