-
Notifications
You must be signed in to change notification settings - Fork 3
[Feat/#28] 회원가입 / 로그인 퍼블리싱 #34
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 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
f86a7cc
rename: 함수 이름 변경
sinji2102 d48cda3
Merge branch 'develop' of https://github.com/billilge/frontend into f…
sinji2102 dc0cc7e
feat: 로그인 페이지 틀 제작
sinji2102 462675c
feat: 로그인 페이지 퍼블리싱
sinji2102 57dc7d4
feat: 회원가입 페이지 퍼블리싱
sinji2102 dfd697b
design: 자잘한 디자인 디테일 수정
sinji2102 5e90656
comment: API 연결 시 연결해야 할 것들 TODO 추가
sinji2102 731d09c
chore: 회원가입/로그인 모바일 레이아웃 제거
sinji2102 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
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
|---|---|---|
| @@ -1,3 +1,30 @@ | ||
| export default function SignUp() { | ||
| return <div />; | ||
| 'use client'; | ||
|
|
||
| import MobileLayout from '@/components/mobile/layout'; | ||
| import ImageLoginLogo from 'public/assets/images/image-login-logo.svg'; | ||
| import IconGoogle from 'public/assets/icons/icon-google.svg'; | ||
|
|
||
| export default function SignIn() { | ||
| return ( | ||
| <MobileLayout> | ||
sinji2102 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| <section className="relative flex h-dvh w-full flex-col items-center justify-start overflow-hidden"> | ||
| <section className="mt-[128px] flex flex-col items-center justify-start gap-1.5"> | ||
| <div className="text-2xl font-normal"> | ||
| 국민대학교 소프트웨어융합대학 | ||
| </div> | ||
| <div className="text-3xl font-semibold">복지물품 대여 시스템</div> | ||
| </section> | ||
| <ImageLoginLogo className="absolute top-24" /> | ||
| {/* onClick 구글 로그인 연결하기 */} | ||
| <button | ||
| className="absolute bottom-44 flex w-11/12 justify-between rounded-2xl border bg-white-primary px-6 py-4" | ||
| type="button" | ||
| > | ||
| <IconGoogle /> | ||
| <div className="flex font-medium">Google로 시작하기</div> | ||
| <div className="h-6 w-6" /> | ||
| </button> | ||
| </section> | ||
| </MobileLayout> | ||
| ); | ||
| } | ||
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,48 @@ | ||
| 'use client'; | ||
|
|
||
| import MobileLayout from '@/components/mobile/layout'; | ||
|
|
||
| export default function SignUp() { | ||
| return ( | ||
| <MobileLayout> | ||
| <section className="relative flex h-dvh w-full flex-col items-center justify-start overflow-hidden"> | ||
| <section className="mt-20 flex w-11/12 flex-col items-start"> | ||
| <div className="text-heading-3_M font-semibold"> | ||
| 복지물품 대여 시스템 | ||
| </div> | ||
| <div className="text-heading-2_M font-bold"> | ||
| 빌릴게에 오신 것을 환영합니다! | ||
| </div> | ||
| </section> | ||
| <section className="mt-[50px] flex w-11/12 flex-col items-start gap-6"> | ||
| <section className="flex w-full flex-col gap-1.5"> | ||
| <div>이름을 입력해 주세요.</div> | ||
| {/* TODO : 이름 유효성 검사 */} | ||
| <input | ||
| placeholder="이름을 정확히 입력해 주세요." | ||
| className="flex w-full rounded-xl border px-3.5 py-4" | ||
| /> | ||
| </section> | ||
| <section className="flex w-full flex-col gap-1.5"> | ||
| <div>학번을 입력해 주세요.</div> | ||
| {/* TODO : 학번 8자 + 유효성 검사사 */} | ||
| <input | ||
| placeholder="8자 모두 입력해 주세요." | ||
| className="flex w-full rounded-xl border px-3.5 py-4" | ||
| /> | ||
| </section> | ||
| </section> | ||
|
|
||
| {/* TODO : onClick 연결하기 */} | ||
| <button | ||
| className="bg-on-kookmin absolute bottom-7 flex w-11/12 justify-between rounded-2xl border px-6 py-4 text-white-primary" | ||
| type="button" | ||
| > | ||
| <div className="h-6 w-6" /> | ||
| <div className="flex font-medium">작성 완료</div> | ||
| <div className="h-6 w-6" /> | ||
| </button> | ||
| </section> | ||
| </MobileLayout> | ||
| ); | ||
| } |
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
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.
오! 바로 svg 컴포넌트로 선언 가능하네요? 15 에서 뭘 해도 안 됐던 거 같은데 굳~