-
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.
- Loading branch information
Showing
4 changed files
with
90 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,40 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>판다마켓 로그인</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" | ||
/> | ||
</head> | ||
<body> | ||
<a class="logo" href="/" | ||
><img | ||
src="/image/Img_logo.png" | ||
alt="판다마켓 로고 이미지" | ||
width="396px" | ||
height="132px" | ||
/></a> | ||
<div> | ||
<form action=""> | ||
<div> | ||
<label for="">이메일</label> | ||
<input type="email" /> | ||
이메일을 입력해주세요 | ||
</div> | ||
<div> | ||
<label for="">비밀번호</label> | ||
<input type="password" /> | ||
비밀번호를 입력해주세요 | ||
</div> | ||
<a href="">로그인</a> | ||
</form> | ||
<div>간편 로그인하기</div> | ||
<div>판다마켓이 처음이신가요? 회원가입</div> | ||
</div> | ||
</body> | ||
</html> |
Empty file.
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,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>판다마켓 회원가입</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" | ||
/> | ||
</head> | ||
<body> | ||
<a class="logo" href="/" | ||
><img | ||
src="/image/Img_logo.png" | ||
alt="판다마켓 로고 이미지" | ||
width="396px" | ||
height="132px" | ||
/></a> | ||
<div> | ||
<form action=""> | ||
<div> | ||
<label for="">이메일</label> | ||
<input type="email" /> | ||
이메일을 입력해주세요 | ||
</div> | ||
<div> | ||
<label for="">닉네임</label> | ||
<input type="email" /> | ||
닉네임을 입력해주세요 | ||
</div> | ||
<div> | ||
<label for="">비밀번호</label> | ||
<input type="password" /> | ||
비밀번호를 입력해주세요 | ||
</div> | ||
<div> | ||
<label for="">비밀번호 확인</label> | ||
<input type="password" /> | ||
비밀번호를 다시 한 번 입력해주세요 | ||
</div> | ||
<a href="">회원가입</a> | ||
</form> | ||
<div>간편 로그인하기</div> | ||
<div>이미 회원이신가요? 로그인</div> | ||
</div> | ||
</body> | ||
</html> |
Empty file.