File: upload.html

package info (click to toggle)
ulfius 2.7.15-2.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,856 kB
  • sloc: ansic: 23,025; makefile: 708; sh: 140
file content (13 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<body>

<form action="upload" method="post" enctype="multipart/form-data">
		<input type="text" name="textParam" value="textValue">
    Select files to upload:<br>
    <input type="file" name="fileToUpload1" id="fileToUpload" value=""><br>
    <input type="submit" value="Upload File" name="submit">
</form>

</body>
</html>