-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from gjrefa9139/Basic-조규진-sprint2
[조규진]Sprint2
- Loading branch information
Showing
25 changed files
with
288 additions
and
40 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -10,12 +10,76 @@ | |
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css" | ||
> | ||
<link rel="stylesheet" href="styles/global.css"> | ||
<link rel="stylesheet" href="styles/pandaaaa.css"> | ||
<link rel="icon" href="images/panda/favicon.ico"> | ||
<link rel="stylesheet" href="styles/auth.css"> | ||
<link rel="icon" href="images/panda/panda.png"> | ||
<title>판다마켓 - 로그인</title> | ||
</head> | ||
|
||
<body> | ||
<img src="images/panda/market_logo.png" alt="판다마켓"> | ||
<div class="auth-container"> | ||
<div class="home-logo"> | ||
<a href="/"> | ||
<img src="images/panda/panda_logo.png" alt="판다마켓 홈" width="396"> | ||
</a> | ||
</div> | ||
|
||
<form method="post"> | ||
<div class="input-info"> | ||
<label for="email">이메일</label> | ||
<input | ||
id="email" | ||
name="email" | ||
type="email" | ||
placeholder="이메일을 입력해 주세요" | ||
> | ||
</div> | ||
<div class="input-info"> | ||
<label for="password">비밀번호</label> | ||
<div class="input-wrapper"> | ||
<input | ||
id="password" | ||
name="password" | ||
type="password" | ||
placeholder="비밀번호를 입력해 주세요" | ||
> | ||
<img | ||
src="images/icon/invisible.png" | ||
alt="비밀번호 숨김" | ||
class="toggle-password" | ||
width="24" | ||
> | ||
</div> | ||
</div> | ||
|
||
<button type="submit" class="button pill"> | ||
로그인 | ||
</button> | ||
</form> | ||
|
||
<div class="social-login"> | ||
<h3>간편 로그인하기</h3> | ||
<div class="social-login-buttons"> | ||
<a href="https://www.google.com/" target="_blank" rel="noopener noreferrer"> | ||
<img | ||
src="images/social/ic_google.png" | ||
alt="구글 로그인" | ||
width="42" | ||
> | ||
</a> | ||
<a href="https://www.kakaocorp.com/page/" target="_blank" rel="noopener noreferrer"> | ||
<img | ||
src="images/social/ic_kakaotalk.png" | ||
alt="카카오톡 로그인" | ||
width="42" | ||
> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div class="auth-switch"> | ||
판다마켓이 처음이신가요? | ||
<a href="singin.html">회원가입</a> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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
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,110 @@ | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link | ||
rel="stylesheet" | ||
as="style" | ||
crossorigin | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css" | ||
> | ||
<link rel="stylesheet" href="styles/global.css"> | ||
<link rel="stylesheet" href="styles/auth.css"> | ||
<link rel="icon" href="images/panda/panda.png"> | ||
<title>판다마켓 - 회원가입</title> | ||
</head> | ||
|
||
<body> | ||
<div class="auth-container"> | ||
<div class="home-logo"> | ||
<a href="/"> | ||
<img src="images/panda/panda_logo.png" alt="판다마켓 홈" width="396"> | ||
</a> | ||
</div> | ||
|
||
<form method="post"> | ||
<div class="input-info"> | ||
<label for="email">이메일</label> | ||
<input | ||
id="email" | ||
name="email" | ||
type="email" | ||
placeholder="이메일을 입력해 주세요" | ||
> | ||
</div> | ||
<div class="input-info"> | ||
<label for="nickname">닉네임</label> | ||
<input | ||
id="nickname" | ||
name="nickname" | ||
type="text" | ||
placeholder="닉네임을 입력해 주세요" | ||
> | ||
</div> | ||
<div class="input-info"> | ||
<label for="password">비밀번호</label> | ||
<div class="input-wrapper"> | ||
<input | ||
id="password" | ||
name="password" | ||
type="password" | ||
placeholder="비밀번호를 입력해 주세요" | ||
> | ||
<img | ||
src="images/icon/invisible.png" | ||
alt="비밀번호 숨김" | ||
class="toggle-password" | ||
width="24" | ||
> | ||
</div> | ||
</div> | ||
<div class="input-info"> | ||
<label for="check-PW">비밀번호 확인</label> | ||
<div class="input-wrapper"> | ||
<input | ||
id="check-PW" | ||
name="check-PW" | ||
type="password" | ||
placeholder="비밀번호를 다시 한 번 입력해 주세요" | ||
> | ||
<img | ||
src="images/icon/invisible.png" | ||
alt="비밀번호 숨김" | ||
class="toggle-password" | ||
width="24" | ||
> | ||
</div> | ||
</div> | ||
|
||
<button type="submit" class="button pill"> | ||
회원가입 | ||
</button> | ||
</form> | ||
|
||
<div class="social-login"> | ||
<h3>간편 로그인하기</h3> | ||
<div class="social-login-buttons"> | ||
<a href="https://www.google.com/" target="_blank" rel="noopener noreferrer"> | ||
<img | ||
src="images/social/ic_google.png" | ||
alt="구글 로그인" | ||
width="42" | ||
> | ||
</a> | ||
<a href="https://www.kakaocorp.com/page/" target="_blank" rel="noopener noreferrer"> | ||
<img | ||
src="images/social/ic_kakaotalk.png" | ||
alt="카카오톡 로그인" | ||
width="42" | ||
> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div class="auth-switch"> | ||
이미 회원이신가요? <a href="login.html">로그인</a> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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,89 @@ | ||
.pill.button { | ||
width: 100%; | ||
} | ||
|
||
.auth-container { | ||
max-width: 640px; | ||
margin: 0 auto; | ||
} | ||
|
||
.home-logo { | ||
display: block; | ||
text-align: center; | ||
margin-top: 60px; | ||
margin-bottom: 40px; | ||
} | ||
|
||
.input-info { | ||
margin-bottom: 24px; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
label { | ||
display: block; | ||
margin-bottom: 16px; | ||
font-size: 18px; | ||
font-weight: 700; | ||
} | ||
|
||
input { | ||
padding: 16px 24px; | ||
background-color: #f3f4f6; | ||
border: none; | ||
border-radius: 12px; | ||
font-size: 16px; | ||
line-height: 24px; | ||
width: 100%; | ||
} | ||
|
||
input::placeholder { | ||
color: #9ca3af; | ||
font-size: 16px; | ||
line-height: 24px; | ||
} | ||
|
||
.input-wrapper { | ||
position: relative; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.toggle-password { | ||
position: absolute; | ||
right: 24px; | ||
cursor: pointer; | ||
} | ||
|
||
.social-login { | ||
background-color: #e6f2ff; | ||
border-radius: 8px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
padding: 16px 23px; | ||
margin: 24px 0; | ||
} | ||
|
||
.social-login h3 { | ||
font-weight: 500; | ||
font-size: 16px; | ||
line-height: 24px; | ||
} | ||
|
||
.social-login-buttons { | ||
display: flex; | ||
gap: 16px; | ||
} | ||
|
||
.auth-switch { | ||
font-weight: 500; | ||
font-size: 15px; | ||
text-align: center; | ||
} | ||
|
||
.auth-switch a { | ||
color: #3182f6; | ||
text-decoration: underline; | ||
text-underline-offset: 2px; | ||
} |
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
Oops, something went wrong.