summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorjvoisin2018-11-11 23:25:40 +0100
committerjvoisin2018-11-11 23:25:40 +0100
commit60aa7f879e16e4ae329c099eecffd97547b39a07 (patch)
tree52a75b31e5b00f0f52a7cd9fe3fea15caab9d0bd /templates
First commit
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..0496c2d
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,20 @@
1<!doctype html>
2<html>
3<head>
4 <title>mat2 - online edition</title>
5 <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css" />
6</head>
7<body>
8 <header>
9 <h1>mat2 - online edition</h1>
10 </header>
11 <section>
12 <h1>Remove metadata from your images</h1>
13 <p>Drag and drop anywhere you want and get your files cleaned</p>
14 <br>
15 <form method=post enctype=multipart/form-data>
16 <input type=file name=file id="upload_file" accept="{{ mimetypes }}">
17 <input type=submit value=Upload>
18 </form>
19 </section>
20</body>