2018-11-15 16:03:12 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h2>» Remove metadata</h2>
|
|
|
|
<p>
|
2019-02-22 20:31:27 +01:00
|
|
|
Upload your file, get a <em>cleaned</em> one in response.
|
|
|
|
<br><br>
|
2019-03-06 15:35:55 +00:00
|
|
|
Please note that while we do not keep a copy of your file,<br>
|
2018-11-15 16:03:12 +01:00
|
|
|
there is no way that you could be certain about this: act accordingly.
|
2019-02-25 15:51:52 +01:00
|
|
|
<br><br>
|
|
|
|
If you have the option, always run <a href="https://0xacab.org/jvoisin/mat2">mat2</a>
|
|
|
|
on your local device instead!<br>
|
2018-11-15 16:03:12 +01:00
|
|
|
</p>
|
2019-02-22 20:31:27 +01:00
|
|
|
<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>
|
2018-11-15 16:03:12 +01:00
|
|
|
<br>
|
|
|
|
<form class='b' method=post enctype=multipart/form-data>
|
2019-02-22 20:31:27 +01:00
|
|
|
<input type=file name=file id="upload_file" accept="{{ mimetypes | join(', ') }}">
|
2018-11-15 16:03:12 +01:00
|
|
|
<input type=submit value=Upload>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|