xref: /aosp_15_r20/external/jsoup/src/test/resources/htmltests/upload-form.html (revision 6da8f8c4bc310ad659121b84dd089062417a2ce2)
1<html>
2<head>
3  <title>Upload Form Test</title>
4</head>
5<body>
6<h1>Upload Form Test</h1>
7
8<form action="/EchoServlet" method="POST" enctype="multipart/form-data" name="tidy" onsubmit="return verifySubmit()">
9  <input type="hidden" name="_function" value="tidy">
10  <label for="_file">Upload:</label>
11  <input name="_file" id="_file" type="file" size="40">
12  <input type="submit">
13</form>
14
15</body>
16</html>
17