-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformex2.html
More file actions
28 lines (28 loc) · 937 Bytes
/
Copy pathformex2.html
File metadata and controls
28 lines (28 loc) · 937 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>폼예제</title>
</head>
<body>
<form method="post" action="form_app.js">
<fieldset>
<legend>로그인</legend>
<label for="user_id">아이디 : </label>
<input type="text" name="id" size="20" id="user_id"> <br>
<label for="user_pw">비밀번호 :</label>
<input type="password" name="pw" size="20" id="user_pw">
</fieldset> <br>
<fieldset>
<legend>통합 검색</legend>
<label for="book_name">도서명 : </label>
<input type="text" name="book_search" size="50" id="book_name">
<br>검색범위 :
<input type="radio" name="s_type" value="keyword" id="keyword">
<label for="keyword">키워드</label> …
<br>자료유형 :
<input type="checkbox" name="d_type" value="all">전체 …
</fieldset> <br> …
<button type="submit">검색</button>
<button type="reset">지우기</button>
</form>
</body>