Skip to content

Commit

Permalink
sprint mission 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ojm51 committed May 27, 2024
1 parent fc83133 commit 5b410ad
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 0 deletions.
40 changes: 40 additions & 0 deletions login/index.html
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 added login/style.css
Empty file.
50 changes: 50 additions & 0 deletions signup/index.html
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 added signup/style.css
Empty file.

0 comments on commit 5b410ad

Please sign in to comment.