-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign_up_form.html
60 lines (47 loc) · 1.73 KB
/
sign_up_form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>회원가입 페이지</title>
<link rel="stylesheet" href="sign_up.css">
</head>
<body>
<div id="wrap">
<!-- 화면 중앙 배치용 -->
<div id="form_wrap">
<!-- -->
<div id="con_wrap">
<!-- header -->
<header>
<h2>SIGN UP</h2>
</header>
<!-- section -->
<section>
<div class="form">
<label for="username"><p>USERNAME</p></label>
<input type="text" class="input_box" id="username">
</div>
<div class="form">
<label for="pw"><p>PASSWORD</p></label>
<input type="password" class="input_box" id="pw">
</div>
<div class="form">
<label for="repeat_pw"><p>REPEAT PASSWORD</p></label>
<input type="password" class="input_box" id="repeat_pw">
</div>
<div class="form">
<label for="email"><p>EMAIL ADDRESS</p></label>
<input type="text" class="input_box" id="email">
</div>
<div id="btn"><span>SIGN UP</span> </div>
</section>
<!-- footer -->
<footer></footer>
</div>
<h5>Already Member?</h5>
</div>
</div>
</body>
</html>