We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0d55c3 commit 75cd000Copy full SHA for 75cd000
20190410/formText1.html
@@ -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
18
+ <input type="submit" value="서버전송"/>
19
+ <input type="reset" value="취소"/>
20
+ </fieldset>
21
+ </form>
22
+ </section>
23
+</body>
24
+</html>
0 commit comments