Simple image host.
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.

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {{template#head}}
  5. </head>
  6. <body>
  7. {{template#body}}
  8. <div id="uploader" class="container">
  9. <input type="file" accept="image/*" id="uploader-input" class="hidden" multiple>
  10. <button class="btn btn-default" onclick="$('#uploader-input').click()">
  11. Select Files
  12. </button>
  13. <button class="btn btn-default" id="uploader-upload" disabled>
  14. Upload
  15. </button>
  16. <ul class="list-group" id="uploader-list"></ul>
  17. </div>
  18. </body>
  19. </html>