You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
481 B
22 lines
481 B
3 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Upload</title>
|
||
|
<style>
|
||
|
body {
|
||
|
padding: 50px;
|
||
|
font: 14px Helvetica, Arial;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>File Upload</h1>
|
||
|
<p>Try uploading multiple files at a time.</p>
|
||
|
<form action="/upload/files" method="post" enctype="multipart/form-data">
|
||
|
<input type="file" name="file" multiple>
|
||
|
<input type="text" name="hallo" hidden value="world">
|
||
|
<input type="submit" value="Upload">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|