forked from gdscewha-3rd/Project-easy-selling-clothes-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signin.html
62 lines (53 loc) · 1.98 KB
/
signin.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="project-easy-selling-clothes-web">
<meta name="keywords" content="clothes, project, easy-selling, deeplearning">
<meta name="developer" content="박채린, 김도은, 오서영">
<title>시옷 : 쉬운 옷 팔기 서비스</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--(1) 메뉴-->
<div class="menu">
<!--로고 이미지 삽입-->
<a href="index.html"><img src="./img/logo.png" alt="시옷"></a>
<!--검색 구현-->
<input type="search" placeholder="원하는 상품을 검색해보세요">
<!--키워드, 로그인, 회원가입 메뉴-->
<a href="" id="keyword">키워드</a>
<a href="signin.html" id="login">로그인</a>
<a href="signup.html" id="signup">회원가입</a>
</div>
<!--(2) 로그인 텍스트와 언더라인-->
<div class="title">
<!--"로그인" 텍스트 삽입-->
<h1>로그인</h1>
<!--언더라인-->
<hr>
</div>
<!--(3) 아이디, 패스워드 입력-->
<div class="parent_box_sign">
<form method="post" action="afterlogin.html">
<p>
<br><br>
<strong>아이디</strong>
<input type="text" name="name" value="이름(실명)을 입력하세요" class="id-field">
</p>
<p>
<br>
<strong>비밀번호</strong>
<input type="password" name="password" value="영문+숫자 조합 8자리 이상 입력하세요" class="pw-field">
</p>
<!--(4) 로그인 버튼-->
<br>
<input type="submit" value="Sign In" class="submit-btn">
</form>
<!--(5) "계정이 없으신가요?" 클릭-->
<div class="links">
<br>
<a href="signup.html">계정이 없으신가요?</a>
</div>
</div>
</body>