media-upload-form.html 267 B

12345678
  1. <form action={{ url_for('.post_media_upload', me=me) }} enctype="multipart/form-data" method="POST">
  2. <h2>Upload Media</h2>
  3. <ul>
  4. <li><input type="file" name="file1">
  5. <li><input type="file" name="file2">
  6. <li><button type="submit">Upload Media</button>
  7. </ul>
  8. </form>