index.html 432 B

12345678910111213141516
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Single file upload</title>
  6. </head>
  7. <body>
  8. <h1>Upload single file with fields</h1>
  9. <form action="/upload" method="post" enctype="multipart/form-data">
  10. Name: <input type="text" name="name"><br>
  11. Email: <input type="email" name="email"><br>
  12. Files: <input type="file" name="file"><br><br>
  13. <input type="submit" value="Submit">
  14. </form>
  15. </body>