diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.html | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/templates/index.html b/templates/index.html index 1e05c82..e9aea92 100644 --- a/templates/index.html +++ b/templates/index.html | |||
| @@ -3,14 +3,22 @@ | |||
| 3 | 3 | ||
| 4 | <h2>» Remove metadata</h2> | 4 | <h2>» Remove metadata</h2> |
| 5 | <p> | 5 | <p> |
| 6 | Upload your image, get a <em>cleaned</em> one in response.<br> | 6 | Upload your file, get a <em>cleaned</em> one in response. |
| 7 | <br> | 7 | <br><br> |
| 8 | Please note that while we do not keep a copy of your image,<br> | 8 | Please note that while we do not keep a copy of your image,<br> |
| 9 | there is no way that you could be certain about this: act accordingly. | 9 | there is no way that you could be certain about this: act accordingly. |
| 10 | </p> | 10 | </p> |
| 11 | <details> | ||
| 12 | <summary>Click <span class='fakelink'>here</span> so see the supported formats</summary> | ||
| 13 | <ul> | ||
| 14 | {% for mimetype in mimetypes %} | ||
| 15 | <li>{{ mimetype }}</li> | ||
| 16 | {% endfor %} | ||
| 17 | </ul> | ||
| 18 | </details> | ||
| 11 | <br> | 19 | <br> |
| 12 | <form class='b' method=post enctype=multipart/form-data> | 20 | <form class='b' method=post enctype=multipart/form-data> |
| 13 | <input type=file name=file id="upload_file" accept="{{ mimetypes }}"> | 21 | <input type=file name=file id="upload_file" accept="{{ mimetypes | join(', ') }}"> |
| 14 | <input type=submit value=Upload> | 22 | <input type=submit value=Upload> |
| 15 | </form> | 23 | </form> |
| 16 | {% endblock %} | 24 | {% endblock %} |
