-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign.html
48 lines (48 loc) · 2.09 KB
/
sign.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
<!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 href="join.css" rel="stylesheet">
</head>
<body>
<div id="join_wrap">
<h1>회원가입</h1>
<form action="aaa.html" method="get">
<fieldset>
<legend class="title">* 필수입력정보</legend>
<table class="joinTable">
<caption>회원가입 필수 입력표</caption>
<tr>
<th class="first"><label for="user_id">* 아이디</label></th>
<td><input type="text" id="user_id" class="textForm" required autofocus>
<input type="button" value="중복확인" class="btn"></td>
</tr>
<tr>
<th><label for="user_pwd">* 비밀번호</label></th>
<td><input type="password" id="user_pwd" class="textForm" placeholder="10자 이상의 영문과 숫자조합"></td>
</tr>
<tr>
<th><label for="user_name">* 이름</label></th>
<td><input type="text" id="user_name" class="textForm"></td>
</tr>
<tr>
<th><label for="user_tel">* 연락처</label></th>
<td><input type="tel" id="user_tel" class="textForm"></td>
</tr>
<tr>
<th><label for="user_email">* 이메일</label></th>
<td><input type="email" id="user_email" class="textForm"></td>
</tr>
</table>
</fieldset>
<div class="btn_area">
<button type="reset">취소</button>
<button type="submit" class="btn_join">회원가입</button>
</div>
</form>
</div>
</body>
</html>