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