summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorjf2019-10-28 12:15:31 +0100
committerjf2019-10-28 12:15:31 +0100
commit43f97e4f82e6b087289ce79f5380f5b716703e8f (patch)
tree85cae7d9ce0d0e66015889154ddbaac673447e58 /templates/index.html
parent05d40216ee96649038f465ae2f28ac7ba28c5048 (diff)
save wip
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html40
1 files changed, 12 insertions, 28 deletions
diff --git a/templates/index.html b/templates/index.html
index 1e44fd2..7f55283 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,31 +1,15 @@
1{% extends "base.html" %} 1{% extends "base.html" %}
2{% block content %} 2{% block content %}
3 3<div class="shadowed-box u-text-center u-center-block">
4<h2>ยป Remove metadata</h2> 4 <h2 class="uk-text-center">Remove metadata</h2>
5<p> 5 <p class="uk-text-center">
6 Upload your file (max size: {{ max_file_size }}MB), get a <em>cleaned</em> one in 6 The file you see is just the tip of the iceberg. Remove the hidden meta
7 response. 7 </p>
8 <br><br> 8 <form class="b" method=post enctype=multipart/form-data>
9 Please note that while we do not keep a copy of your file,<br> 9 <div class="uk-margin">
10 there is no way that you could be certain about this: act accordingly. 10 <input type="file" name=file id="upload_file" accept="{{ mimetypes | join(', ') }}">
11 <br><br> 11 <button class="uk-button uk-button-default" type="submit" value="Upload">Upload</button>
12 If you have the option, always run <a href="https://0xacab.org/jvoisin/mat2">mat2</a> 12 </div>
13 on your local device instead!<br> 13 </form>
14</p> 14</div>
15<details>
16 <summary>Click <span class='fakelink'>here</span> to see the supported formats</summary>
17 <ul>
18 {% for mimetype in mimetypes %}
19 <li>{{ mimetype }}</li>
20 {% endfor %}
21 </ul>
22</details>
23<br>
24<p>
25 Simply drag &amp; drop your file here or use the file select button below.
26</p>
27<form class='b' method=post enctype=multipart/form-data>
28 <input type=file name=file id="upload_file" accept="{{ mimetypes | join(', ') }}">
29 <input type=submit value=Upload>
30</form>
31{% endblock %} 15{% endblock %}