-
Notifications
You must be signed in to change notification settings - Fork 28
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
6 changed files
with
57 additions
and
9 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
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,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>회원가입 - 판다마켓</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body class="sign"> | ||
<div class="sign-container"> | ||
<a href="/" class="logo"><img src="images/logo.svg" alt="판다마켓 로고"></a> | ||
<form class="sign-form" action=""> | ||
|
||
<label for="email">이메일</label> | ||
<input class="sign-form__input" placeholder="이메일을 입력해주세요" type="text" name="email" id="email"> | ||
|
||
<label for="name">닉네임</label> | ||
<input class="sign-form__input" placeholder="닉네임을 입력해주세요" type="text" name="name" id="name"> | ||
|
||
<label for="password">비밀번호</label> | ||
<div class="password-container"> | ||
<input class="sign-form__input" placeholder="비밀번호를 입력해주세요" type="password" name="password" id="password"> | ||
<button id="password__toggle" class="icon icon--24" style="background-image: url(images/ico_eye-close.svg);"></button> | ||
</div> | ||
|
||
<label for="password--check">비밀번호 확인</label> | ||
<div class="password-container"> | ||
<input class="sign-form__input" placeholder="비밀번호를 다시 한 번 입력해주세요" type="password" name="password--check" id="password--check"> | ||
<button id="password__toggle" class="icon icon--24" style="background-image: url(images/ico_eye-close.svg);"></button> | ||
</div> | ||
|
||
<input class="button button--wide" type="submit" value="회원가입"> | ||
</form> | ||
<div class="social-log-wrap"> | ||
<p class="social-log-wrap__title">간편 로그인하기</p> | ||
<a class="icon icon--42" href="https://www.google.com" style="background-image: url(images/ico_google.svg);"></a> | ||
<a class="icon icon--42" href="https://www.kakaocorp.com" style="background-image: url(images/ico_kakao.svg);"></a> | ||
</div> | ||
<footer> | ||
이미 회원이신가요? <a href="/login.html">로그인</a> | ||
</footer> | ||
</div> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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