mirror of
https://0xacab.org/jvoisin/mat2-web.git
synced 2025-02-23 16:49:59 -05:00
32 lines
944 B
HTML
32 lines
944 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<h2>» Remove metadata</h2>
|
|
<p>
|
|
Upload your file (max size: {{ max_file_size }}MB), get a <em>cleaned</em> one in
|
|
response.
|
|
<br><br>
|
|
Please note that while we do not keep a copy of your file,<br>
|
|
there is no way that you could be certain about this: act accordingly.
|
|
<br><br>
|
|
If you have the option, always run <a href="https://0xacab.org/jvoisin/mat2">mat2</a>
|
|
on your local device instead!<br>
|
|
</p>
|
|
<details>
|
|
<summary>Click <span class='fakelink'>here</span> to see the supported formats</summary>
|
|
<ul>
|
|
{% for mimetype in mimetypes %}
|
|
<li>{{ mimetype }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</details>
|
|
<br>
|
|
<p>
|
|
Simply drag & drop your file here or use the file select button below.
|
|
</p>
|
|
<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 %}
|