-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[김성빈] Sprint2 #17
The head ref may contain hidden characters: "Basic-\uAE40\uC131\uBE48-sprint2"
[김성빈] Sprint2 #17
Changes from all commits
3eca6d5
a221662
f45e997
de20cca
f501d34
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. login page에서 사용되지 않는 스타일이 많이 포함되어있습니다! 페이지별로 스타일을 나누거나 공통 부분을 따로 빼보시면 좋을 거 같아요 :) |
||
<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> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 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> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 아이콘에 대한 정보가 부족해 보여요! |
||
</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> |
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> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bem을 잘 적용해주셨네요! 👍