-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
'use client'; | ||
|
||
import classNames from 'classnames/bind'; | ||
import Link from 'next/link'; | ||
|
||
import Button from '@components/shared/button/Button'; | ||
import Header from '@components/shared/header/Header'; | ||
import Spacing from '@components/shared/spacing/Spacing'; | ||
import TextField from '@components/shared/text-field/TextField'; | ||
import Title from '@components/shared/title/Title'; | ||
|
||
import styles from './page.module.scss'; | ||
|
||
const cx = classNames.bind(styles); | ||
|
||
function LoginPage() { | ||
return ( | ||
<main> | ||
<Header displayLogo={false} /> | ||
<Spacing size={30} /> | ||
<form> | ||
<Title title="로그인" size={20} /> | ||
<TextField label="아이디" required placeholder="아이디" /> | ||
<TextField label="비밀번호" required placeholder="비밀번호" /> | ||
<Spacing size={30} /> | ||
<Button type="submit" size="medium" full> | ||
로그인 | ||
</Button> | ||
<Spacing size={20} /> | ||
</form> | ||
<ul className={cx('linkContainer')}> | ||
<li> | ||
<Link href="/"> | ||
<span>회원가입</span> | ||
</Link> | ||
</li> | ||
<li> | ||
<Link href="/"> | ||
<span>아이디 찾기</span> | ||
</Link> | ||
</li> | ||
<li> | ||
<Link href="/"> | ||
<span>비밀번호 찾기</span> | ||
</Link> | ||
</li> | ||
</ul> | ||
</main> | ||
); | ||
} | ||
|
||
export default LoginPage; |