민재기

170316 practice.

Showing 1 changed file with 50 additions and 0 deletions
1 +<!DOCTYPE html>
2 +<html lang="ko">
3 + <head>
4 + <meta charset="utf-8">
5 + </head>
6 + <form action="" method="post">
7 + <input type="hidden" name="type" value="user"/>
8 + <table border="1">
9 + <tr>
10 + <th>아이디</th>
11 + <td colspan="3"><input type="text" name="ID" size="10"/>
12 + <input type="button" value="중복조회"</td>
13 + </tr>
14 + <tr>
15 + <th>비밀번호</th>
16 + <td><input type="text" name="pwd" size="10"/></td>
17 + <td>확인</td>
18 + <td><input type="text" name="pwd2" size="10"/></td>
19 + </tr>
20 + <tr>
21 + <th>이름</th>
22 + <td colspan="3"><input type="text" name="name" size="10"/></td>
23 + </tr>
24 + <tr>
25 + <th>이메일</th>
26 + <td colspan="3"><input type="text" name="email" size="10"/></td>
27 + </tr>
28 + <tr>
29 + <th>성별</th>
30 + <td colspan="3">
31 + <input type="radio" name="sex" value="male"/>
32 + <input type="radio" name="sex" value="female"/>
33 + </td>
34 + </tr>
35 + <tr>
36 + <th>지역</th>
37 + <td colspan="3">
38 + <select name="address">
39 + <option value="seoul">서울</option>
40 + <option value="busan">부산</option>
41 + <option value="etc">기타</option>
42 + </td>
43 + </tr>
44 + <tr>
45 + <td colspan="4"><input type="checkbox" name="agreement"/> 약관에 동의합니다.</td>
46 + </tr>
47 + </table>
48 + <input type="submit" value="회원가입"/>
49 + </form>
50 +</html>