-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
59 lines (57 loc) · 1.79 KB
/
Copy pathform.html
File metadata and controls
59 lines (57 loc) · 1.79 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko">
<head>
<meta http-equiv="Content-Type" content="text/html" charset = "UTF-8">
<title>다양한 폼 컨트롤</title>
</head>
<body>
<h1>다양한 폼 컨트롤(input)</h1>
<form method="post" action="server.jsp">
<fieldset>
<legend>
회원정보
</legend>
<p>
<label for="userId">아이디</label>
<input type="text" id="userId" />
<input type="image" src="images/btn.png" alt="중복확인" />
</p>
<p>
<label for="userPwd">비밀번호</label>
<input type="password" id="userPwd" />
</p>
<p>
<label for="userEmail">이메일</label>
<input type="text" id="userEmail" title="이메일 아이디 입력" />
@
<input type="text" id="userAccount" title="이메일 계정 입력" />
</p>
<p>
성별
<br />
<input type="radio" name="gender" id="man" value="male" />
<label for="man">남자</label>
<input type="radio" name="gender" id="woman" value="female" />
<label for="woman">여자</label>
</p>
<p>
<label for="attchPhoto">사진</label>
<input type="file" name="attchPhoto" id="attchPhoto" />
</p>
<p>
수신설정
<br />
<input type="checkbox" name="accept" id="acceptEmail" />
<label for="acceptEmail">메일 수신 허용</label>
<br />
<input type="checkbox" name="accept" id="acceptSMS" />
<label for="acceptSMS">SMS 수신 허용</label>
</p>
<p>
<input type="submit" value="확인" />
<input type="reset" value="취소" />
</p>
</fieldset>
</form>
</body>
</html>