-
Notifications
You must be signed in to change notification settings - Fork 6
Feat: 회원가입 페이지 UI 구현 #37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1ed2dd9
Feat: 회원가입 페이지 UI 구현
mungyun1 6be8b6a
Merge branch 'feature/login-ul' of https://github.com/codeit9-tempora…
mungyun1 23162c7
Merge branch 'develop' of https://github.com/codeit9-temporary/linkbr…
mungyun1 7eb005e
Chore: AuthInput에 name 속성 추가
mungyun1 7cc9dce
Feat: AuthInput 로고 클릭 시, 렌딩 페이지로 이동
mungyun1 8ff1c6a
Docs: Tailwind CSS 커스텀 설정 변경
mungyun1 048f3da
Chore: 로그인페이지 이메일 오타 수정
mungyun1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,54 @@ | ||
| import AuthInput from "@/components/Auth/AuthInput"; | ||
| import Button from "@/components/Button"; | ||
| import AuthLayout from "@/components/Layout/AuthLayout"; | ||
| import Link from "next/link"; | ||
|
|
||
| const signup = () => { | ||
| return ( | ||
| <AuthLayout> | ||
| <p className="mt-[16px] text-base font-normal"> | ||
| 이미 회원이신가요?{" "} | ||
| <Link | ||
| href="/login" | ||
| className="cursor-pointer text-purple100 underline font-semibold" | ||
| > | ||
| 로그인하기 | ||
| </Link> | ||
| </p> | ||
| <form | ||
| className="w-full sm:max-w-[325px] md:max-w-[400px] mt-[30px]" | ||
| aria-labelledby="login-form" | ||
| > | ||
| <AuthInput | ||
| text="이메일" | ||
| type="text" | ||
| name="email" | ||
| placeholder="이메일을 입력해주세요." | ||
| /> | ||
| <AuthInput | ||
| text="이름" | ||
| type="text" | ||
| name="nickname" | ||
| placeholder="이름을 입력해주세요." | ||
| /> | ||
| <AuthInput | ||
| text="비밀번호" | ||
| type="password" | ||
| name="password" | ||
| placeholder="비밀번호를 입력해주세요." | ||
| /> | ||
| <AuthInput | ||
| text="비밀번호 확인" | ||
| type="password" | ||
| name="passwordConfirm" | ||
| placeholder="비밀번호를 다시 입력해주세요." | ||
| /> | ||
| <Button width="w-full" height="h-[53px]" className="mt-[30px]"> | ||
| 회원가입 | ||
| </Button> | ||
| </form> | ||
| </AuthLayout> | ||
| ); | ||
| }; | ||
|
|
||
| export default signup; | ||
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
깔끔하네요~😆