diff --git a/src/app/find-id/FindIdDevOption.tsx b/src/app/find-id/FindIdDevOption.tsx new file mode 100644 index 0000000..ca29738 --- /dev/null +++ b/src/app/find-id/FindIdDevOption.tsx @@ -0,0 +1,82 @@ +"use client"; + +import React, { useState } from "react"; + +type FindIdDevOptionProps = { + doneEnabled?: boolean; + setDoneEnabled?: (enabled: boolean) => void; + failedEnabled?: boolean; + setFailedEnabled?: (enabled: boolean) => void; +}; + +export default function FindIdDevOption({ + doneEnabled, + setDoneEnabled, + failedEnabled, + setFailedEnabled, +}: FindIdDevOptionProps) { + const [isOpen, setIsOpen] = useState(false); + + return ( +
+ 가입 시 등록한 회원정보를 입력해 주세요. +
++ {description} +
++ {userId} +
+ )} + {joinedAtText && ( ++ ({joinedAtText}) +
+ )} ++ {description} +
++ Copyright ⓒ 2025 XL LMS. All rights reserved +
+login error modal
diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index d45749a..1c4c529 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -7,7 +7,7 @@ import LoginCheckboxActiveSvg from "@/app/svgs/logincheckboxactivesvg"; import LoginCheckboxInactiveSvg from "@/app/svgs/logincheckboxinactivesvg"; import LoginInputSvg from "@/app/svgs/inputformx"; import LoginErrorModal from "./LoginErrorModal"; -import LoginOption from "@/app/login/loginoption"; +import LoginOption from "@/app/login/LoginOption"; export default function LoginPage() { const [userId, setUserId] = useState(""); @@ -70,7 +70,7 @@ export default function LoginPage() { onBlur={() => setIsUserIdFocused(false)} placeholder="아이디 (이메일)" className=" - h-[56px] px-[12px] py-[7px] w-full rounded-[8px] border border-neutral-40 + h-[40px] px-[12px] py-[7px] w-full rounded-[8px] border border-neutral-40 focus:outline-none focus:ring-0 focus:ring-offset-0 focus:shadow-none focus:appearance-none focus:border-neutral-700 text-[18px] text-neutral-700 font-normal leading-[150%] placeholder:text-input-placeholder-text @@ -106,7 +106,7 @@ export default function LoginPage() { onBlur={() => setIsPasswordFocused(false)} placeholder="비밀번호" className=" - h-[56px] px-[12px] py-[7px] rounded-[8px] w-full border border-neutral-40 + h-[40px] px-[12px] py-[7px] rounded-[8px] w-full border border-neutral-40 focus:outline-none focus:ring-0 focus:ring-offset-0 focus:shadow-none focus:appearance-none focus:border-neutral-700 text-[18px] text-neutral-700 font-normal leading-[150%] placeholder:text-input-placeholder-text @@ -164,7 +164,7 @@ export default function LoginPage() { {/* 로그인 버튼 */}+ {description} +
+register done
+register code error modal
++ Copyright ⓒ 2025 XL LMS. All rights reserved +
++ {description} +
+reset password done modal
++ 비밀번호 재설정을 위해 아래 정보를 입력해 주세요. +
++ Copyright ⓒ 2025 XL LMS. All rights reserved +
+