Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Simple Multer Upload Example</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. </head>
  8. <body>
  9. <form action="http://localhost:3000/api/submissions" enctype="multipart/form-data" method="post">
  10. <input type="file" name="submissionFile">
  11. <input type="text" name="assignmentId">
  12. <input type="submit" value="Upload">
  13. </form>
  14. </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement