1
0

file.html 337 B

1234567891011
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <form method="POST" action="/upload" enctype="multipart/form-data">
  5. <input name="my_file1" type="file"/>
  6. <input name="my_file2" type="file"/>
  7. <input name="my_file3" type="file"/>
  8. <button type="submit">Upload</button>
  9. </form>
  10. </body>
  11. </html>