Showing
1 changed file
with
30 additions
and
0 deletions
form_input_test.html
0 → 100644
1 | +<!DOCTYPE html> | ||
2 | +<html lang="ko"> | ||
3 | + <head> | ||
4 | + <meta charset="utf-8"> | ||
5 | + </head> | ||
6 | + <body> | ||
7 | + <form action="" method="post"> | ||
8 | + <input type="hidden" name="type" value="user"/> | ||
9 | + 아이디: <input type="text" name="name" size="10"/> | ||
10 | + <input type="button" value="중복조회"/> <br/> | ||
11 | + 비밀번호: <input type="password" name="pwd" size="10"/><br/> | ||
12 | + 성별: | ||
13 | + <input type="radio" name="sex" value="m"/>남 | ||
14 | + <input type="radio" name="sex" value="f"/>여<br/> | ||
15 | + 취미: | ||
16 | + <input type="checkbox" name="hobby" value="book"/>책 | ||
17 | + <input type="checkbox" name="hobby" value="movie"/>영화 | ||
18 | + <input type="checkbox" name="hobby" value="music"/>음악<br/> | ||
19 | + 사진: <input type="file" name="photo"/><br/> | ||
20 | + 주소: <select name="address"> | ||
21 | + <option value="seoul">서울</option> | ||
22 | + <option value="busan">부산</option> | ||
23 | + <option value="etc">기타</option> | ||
24 | + </select><br/> | ||
25 | + 소개: <br/> | ||
26 | + <textarea cols="30" rows="5" name="intro"></textarea><br/> | ||
27 | + <input type="submit"/> | ||
28 | + </form> | ||
29 | + </body> | ||
30 | +</html> |
-
Please register or login to post a comment