Skip to content

Commit 75cd000

Browse files
authored
Create formText1.html
1 parent b0d55c3 commit 75cd000

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

20190410/formText1.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!doctype html> <!-- formText1.html -->
2+
<html>
3+
<head>
4+
<meta charset="utf-8"/>
5+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
6+
<title>폼 학습</title>
7+
</head>
8+
<body>
9+
<section>
10+
<form action="https://jsptogo.herokuapp.com/jspsrc/formText1.jsp" method="post">
11+
<fieldset>
12+
<legend>사용자 정보</legend>
13+
<input id="namex" type="text" name="namex" size="20" maxlength="20" placeholder="아이디입력"/>
14+
<input type="button" value="중복확인"/>
15+
<br/>
16+
<input id="passx" type="password" name="passx"/>
17+
<br/>
18+
<input type="submit" value="서버전송"/>
19+
<input type="reset" value="취소"/>
20+
</fieldset>
21+
</form>
22+
</section>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)