-
Notifications
You must be signed in to change notification settings - Fork 30
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 #17 from kim-1997/Basic-김성빈-sprint2
[김성빈] Sprint2
- Loading branch information
Showing
14 changed files
with
444 additions
and
35 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 |
---|---|---|
@@ -1,11 +1,77 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>login</title> | ||
<title>판다마켓 | 로그인</title> | ||
<link rel="stylesheet" href="src/assets/css/main.css" /> | ||
<link rel="stylesheet" href="src/assets/css/sub.css" /> | ||
<link rel="stylesheet" href="src/assets/css/font.css" /> | ||
<link rel="stylesheet" href="src/assets/css/variables.css" /> | ||
</head> | ||
<body> | ||
<div>login</div> | ||
<div class="form-box"> | ||
<div class="form-box__wrap"> | ||
<h1> | ||
<a href="/" class="form-box__logo"> | ||
<span class="blind">판다마켓</span> | ||
</a> | ||
</h1> | ||
<form class="form"> | ||
<div class="form__group"> | ||
<label for="email">이메일</label> | ||
<input | ||
type="email" | ||
id="email" | ||
class="form__input" | ||
placeholder="이메일을 입력해주세요" | ||
/> | ||
</div> | ||
<div class="form__group"> | ||
<label for="password">비밀번호</label> | ||
<div class="form__visible"> | ||
<input | ||
type="password" | ||
id="password" | ||
class="form__input" | ||
placeholder="비밀번호를 입력해주세요" | ||
/> | ||
<div class="visible-icon"></div> | ||
</div> | ||
</div> | ||
<div class="form__group"> | ||
<button type="submit" class="form__button"> | ||
<span>로그인</span> | ||
</button> | ||
</div> | ||
</form> | ||
<div class="form-box__simplelogin"> | ||
<span>간편 로그인 하기</span> | ||
<ul class="form-box__social"> | ||
<li> | ||
<a | ||
href="https://www.google.com/" | ||
class="social-icon social-icon--google" | ||
> | ||
<span class="blind">구글 로그인 하기</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a | ||
href="https://www.kakaocorp.com/page/" | ||
class="social-icon social-icon--kakao" | ||
> | ||
<span class="blind">카카오톡 로그인 하기</span> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="form-box__signup"> | ||
판다마켓이 처음이신가요? | ||
<a href="/signup.html">회원가입</a> | ||
</div> | ||
</div> | ||
</div> | ||
<script src="src/assets/js/sub.js"></script> | ||
</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,98 @@ | ||
<!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="src/assets/css/main.css" /> | ||
<link rel="stylesheet" href="src/assets/css/sub.css" /> | ||
<link rel="stylesheet" href="src/assets/css/font.css" /> | ||
<link rel="stylesheet" href="src/assets/css/variables.css" /> | ||
</head> | ||
<body> | ||
<div class="form-box"> | ||
<div class="form-box__wrap"> | ||
<h1> | ||
<a href="/" class="form-box__logo"> | ||
<span class="blind">판다마켓</span> | ||
</a> | ||
</h1> | ||
<form class="form"> | ||
<div class="form__group"> | ||
<label for="email">이메일</label> | ||
<input | ||
type="email" | ||
id="email" | ||
class="form__input" | ||
placeholder="이메일을 입력해주세요" | ||
/> | ||
</div> | ||
<div class="form__group"> | ||
<label for="text">닉네임</label> | ||
<input | ||
type="text" | ||
id="text" | ||
class="form__input" | ||
placeholder="닉네임을 입력해주세요" | ||
/> | ||
</div> | ||
<div class="form__group"> | ||
<label for="password">비밀번호</label> | ||
<div class="form__visible"> | ||
<input | ||
type="password" | ||
id="password" | ||
class="form__input" | ||
placeholder="비밀번호를 입력해주세요" | ||
/> | ||
<div class="visible-icon visible-icon1"></div> | ||
</div> | ||
</div> | ||
<div class="form__group"> | ||
<label for="password2">비밀번호 확인</label> | ||
<div class="form__visible"> | ||
<input | ||
type="password" | ||
id="password2" | ||
class="form__input" | ||
placeholder="비밀번호를 다시 한 번 입력해주세요" | ||
/> | ||
<div class="visible-icon visible-icon2"></div> | ||
</div> | ||
</div> | ||
<div class="form__group"> | ||
<button type="submit" class="form__button"> | ||
<span>회원가입</span> | ||
</button> | ||
</div> | ||
</form> | ||
<div class="form-box__simplelogin"> | ||
<span>간편 로그인 하기</span> | ||
<ul class="form-box__social"> | ||
<li> | ||
<a | ||
href="https://www.google.com/" | ||
class="social-icon social-icon--google" | ||
> | ||
<span class="blind">구글 로그인 하기</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a | ||
href="https://www.kakaocorp.com/page/" | ||
class="social-icon social-icon--kakao" | ||
> | ||
<span class="blind">카카오톡 로그인 하기</span> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="form-box__signup"> | ||
이미 회원이신가요? | ||
<a href="/login.html">로그인</a> | ||
</div> | ||
</div> | ||
</div> | ||
<script src="src/assets/js/sub.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.