1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>FlaskDrive</title>
- </head>
-
- <body>
- <div class="content">
- <h3>FlaskDrive: S3 Flask Demo</h3>
-
- <p>Welcome to this AWS S3 Demo</p>
-
- <h2> {{ msg }}</h2>
-
- <div>
- <h3>Upload your file here:</h3>
- <form method="POST" action="/upload" enctype=multipart/form-data>
- <input type=file name=file>
- <input type=submit value=Upload>
- </form>
- </div>
-
-
- <div>
- <h3>These are your uploaded files:</h3>
- <p>Click on the filename to download it.</p>
- <ul>
- {% for item in contents %}
- <li>
- <a href="/download/{{ item.Key }}"> {{ item.Key }} </a>
- </li>
- {% endfor %}
- </ul>
-
- </div>
- </div>
- </body>
- </html>
|