xref: /aosp_15_r20/external/jsoup/src/test/resources/htmltests/form-tests.html (revision 6da8f8c4bc310ad659121b84dd089062417a2ce2)
1<title>Form test</title>
2
3<form id="login" action="/CookieServlet" method="post">
4  <input name="setCookies" value="1" type="hidden">
5  <input name="loc" value="/EchoServlet" type="hidden">
6
7  Username: <input name="username"><br>
8  Password: <input name="password" type="password">
9</form>
10
11<form id="login2" action="/CookieServlet" method="post">
12  <input name="setCookies" value="1" type="hidden">
13
14  Username: <input name="username"><br>
15  Password: <input name="password" type="password">
16</form>
17