summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorjvoisin2018-11-15 16:03:12 +0100
committerjvoisin2018-12-09 18:59:23 +0100
commit3231047c1475c9e500a0e5f92ea129fccef8dd28 (patch)
tree6aab8a78909887b36cdcfb089cf557a043f25875 /templates/index.html
parent60aa7f879e16e4ae329c099eecffd97547b39a07 (diff)
Second commit
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html36
1 files changed, 16 insertions, 20 deletions
diff --git a/templates/index.html b/templates/index.html
index 0496c2d..1e05c82 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,20 +1,16 @@
1<!doctype html> 1{% extends "base.html" %}
2<html> 2{% block content %}
3<head> 3
4 <title>mat2 - online edition</title> 4<h2>ยป Remove metadata</h2>
5 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css" /> 5<p>
6</head> 6Upload your image, get a <em>cleaned</em> one in response.<br>
7<body> 7 <br>
8 <header> 8 Please note that while we do not keep a copy of your image,<br>
9 <h1>mat2 - online edition</h1> 9 there is no way that you could be certain about this: act accordingly.
10 </header> 10</p>
11 <section> 11<br>
12 <h1>Remove metadata from your images</h1> 12<form class='b' method=post enctype=multipart/form-data>
13 <p>Drag and drop anywhere you want and get your files cleaned</p> 13 <input type=file name=file id="upload_file" accept="{{ mimetypes }}">
14 <br> 14 <input type=submit value=Upload>
15 <form method=post enctype=multipart/form-data> 15</form>
16 <input type=file name=file id="upload_file" accept="{{ mimetypes }}"> 16{% endblock %}
17 <input type=submit value=Upload>
18 </form>
19 </section>
20</body>