practice4.html
1.47 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
58
59
60
<html>
<meta charset="utf-8">
<title>실습3</title>
<body>
<table border="0">
<!--아이디-->
<tbody>
<tr>
<td>아이디</td>
<td colspan="3"><input type="text" name="_id" size="10"/>
<input type="button" value="중복조회"/></td>
</tr>
<!--비밀번호-->
<tr>
<td>비밀번호</td>
<td><input type="password" name="pwd" size="10"/></td>
<td>확인</td>
<td><input type="password" name="pwdCheck" size="10"/></td>
</tr>
<!--이름-->
<tr>
<td>이름</td>
<td colspan="3"><input type="text" name="name" size="10"/></td>
</tr>
<!--이메일-->
<tr>
<td>이메일</td>
<td colspan="3"><input type="text" name="email" size="10"/></td>
</tr>
<!--성별-->
<tr>
<td>성별</td>
<td colspan="3"><input type="radio" name="sex" value="m"/>남
<input type="radio" name="sex" value="f"/>여</td>
</tr>
<!--지역-->
<tr>
<td>지역</td>
<td colspan="3">
<select name="address">
<option value="seoul">서울</option>
<option value="busan">부산</option>
<option value="etc">기타</option>
</select></td>
</tr>
<!--약관동의-->
<tr>
<td colspan="4"><input type="checkbox" name="agree" value="agree"/>약관에 동의합니다.</td>
</tr>
</tbody>
</table>
<input type="submit" value="회원가입"/>
</body>
</html>