Skip to content

Commit

Permalink
design : 로그인 페이지 디자인 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
cmlim0070 committed Jan 3, 2025
1 parent b46c109 commit 9f9875e
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions src/pages/User/Login/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,33 +36,37 @@ export const LoginPage = () => {
};

return (
<div className="flex flex-col gap-3 h-full my-[50px]">
<div className="flex flex-col items-center gap-3 w-full h-full my-[50px]">
<h2 className="text-2xl text-center text-sample-blue font-bold py-3">
Bottler
</h2>
<form
className="flex flex-col gap-5 "
className="flex flex-col gap-5 w-full p-5"
onSubmit={handleSubmit}
noValidate
>
<h2 className="text-2xl font-bold ">로그인</h2>
<div className="flex flex-col gap-5">
<div className="flex flex-col gap-2">
<EmailInput></EmailInput>
<PasswordInput></PasswordInput>
</div>
<div className="flex flex-col gap-1 w-full">
<div className="flex flex-row gap-1 w-full">
<div className="flex flex-col gap-3 w-full">
<button
className="btn-primary-filled"
type="submit"
>
로그인
</button>
<button
className="btn-primary"
type="button"
onClick={handleNavigateRegister}
>
회원가입
</button>
<div>
계정이 없으신가요?
<a
className="text-bold text-sample-blue"
onClick={handleNavigateRegister}
>
{' '}회원가입
</a>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 9f9875e

Please sign in to comment.