storage.html 876 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>FlaskDrive</title>
  5. </head>
  6. <body>
  7. <div class="content">
  8. <h3>FlaskDrive: S3 Flask Demo</h3>
  9. <p>Welcome to this AWS S3 Demo</p>
  10. <h2> {{ msg }}</h2>
  11. <div>
  12. <h3>Upload your file here:</h3>
  13. <form method="POST" action="/upload" enctype=multipart/form-data>
  14. <input type=file name=file>
  15. <input type=submit value=Upload>
  16. </form>
  17. </div>
  18. <div>
  19. <h3>These are your uploaded files:</h3>
  20. <p>Click on the filename to download it.</p>
  21. <ul>
  22. {% for item in contents %}
  23. <li>
  24. <a href="/download/{{ item.Key }}"> {{ item.Key }} </a>
  25. </li>
  26. {% endfor %}
  27. </ul>
  28. </div>
  29. </div>
  30. </body>
  31. </html>