Skip to content

Commit

Permalink
Merge pull request #56 from team-Ollie/17-feature-Signup-API
Browse files Browse the repository at this point in the history
#16 fix: 회원가입 success page 수정
  • Loading branch information
leejin-rho authored Jul 3, 2024
2 parents cad784a + 55b2d10 commit 7e1fbb0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
8 changes: 4 additions & 4 deletions pages/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ const SignUp: NextPage = () => {
maxLength={16}
className="flex-grow"
/>
<button
{/* <button
className="shrink-0 px-3 py-2.5 border border-main-color text-main-color rounded-lg h5"
onClick={(e) => {
e.preventDefault();
}}
>
중복
</button>
</button> */}
</FlexBox>

<TextLine children={"비밀번호"} className="pl-1" />
Expand All @@ -138,15 +138,15 @@ const SignUp: NextPage = () => {
maxLength={8}
className="flex-grow"
/>
<button
{/* <button
className="shrink-0 px-3 py-2.5 border border-main-color text-main-color rounded-lg h5"
onClick={(e) => {
e.preventDefault();
onClickCheckBtn();
}}
>
중복
</button>
</button> */}
</FlexBox>

<TextLine children={"식별번호"} className="pl-1" />
Expand Down
16 changes: 10 additions & 6 deletions pages/success.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,21 @@ const SignupSuccess: NextPage = () => {
});

return (
<FlexBox direction="col" className="w-full h-full justify-center">
<div className="w-1/5 aspect-square" ref={lottieRef} />
<div className="h4 text-center mb-12">회원가입을 완료하였습니다!</div>
<div className="grid grid-cols-2 gap-2 w-full px-6">
<div className="w-full h-full flex flex justify-center items-center">
<FlexBox
direction="col"
className="w-[90%] h-full items-center justify-center"
>
<div className="w-1/5 aspect-square" ref={lottieRef} />
<div className="h4 text-center mb-12">회원가입을 완료하였습니다!</div>

<Button
text="로그인하러 가기"
style="bg-main-100 text-grey-900"
onClick={() => router.push("/login")}
/>
</div>
</FlexBox>
</FlexBox>
</div>
);
};

Expand Down

0 comments on commit 7e1fbb0

Please sign in to comment.