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.

index.html 518B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {{head}}
  5. <link rel="stylesheet" href="/index/style.css">
  6. </head>
  7. <body>
  8. {{global}}
  9. <div id="uploader" class="container">
  10. <input type="file" id="uploader-input" class="hidden" multiple>
  11. <button class="btn btn-default" onclick="$('#uploader-input').click()">Select Files</button>
  12. <button class="btn btn-default" id="uploader-upload">Upload</button>
  13. <ul class="list-group" id="uploader-list"></ul>
  14. </div>
  15. <script src="/index/script.js"></script>
  16. </body>
  17. </html>