join.html
2.51 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FishBook : 회원가입</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="header">
<h1>
<a href="#" class="h_logo">
<img src="images/fish-4925732.png" id="h_logo_img" alt="logo">
</a>
</h1>
</div>
<div id="container">
<div id="content">
<form>
<fieldset class="join_form">
<legend class="blind">회원가입</legend>
<div class="input_row" id="email_area">
<span class="input_box">
<label for="email" id="label_email_area"></label>
<input type="text" id="email" name="email" class="int" placeholder="이메일" autofocus>
</span>
<!-- 취소 버튼(쓴 내용 삭제)-->
</div>
<div class="input_row" id="id_area">
<span class="input_box">
<label for="id" id="label_id_area"></label>
<input type="text" id="id" name="id" class="int" placeholder="아이디">
</span>
<!-- 취소 버튼(쓴 내용 삭제)-->
</div>
<div class="input_row" id="pw_area">
<span class="input_box">
<label for="pw" id="label_pw_area"></label>
<input type="text" id="pw" name="pw" class="int" placeholder="비밀번호">
</span>
<!-- 취소 버튼(쓴 내용 삭제)-->
</div>
<div class="input_row" id="pw_check_area">
<span class="input_box">
<label for="pw_check" id="label_pw_check_area"></label>
<input type="text" id="pw_check" name="pw_check" class="int" placeholder="비밀번호 확인">
</span>
<!-- 취소 버튼(쓴 내용 삭제)-->
</div>
<input type="submit" title="회원가입" id="btn_join" alt="회원가입" value="회원가입">
</fieldset>
</form>
</div>
</div>
</body>
</html>