[516ee5]: / templates / about.html

Download this file

42 lines (36 with data), 793 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html lang="en">
<body style="background-color:powderblue;">
<style>
h1 {text-align: center;}
p {text-align: center;}
div {text-align: center;}
img {
max-width:40%;
height:auto;
max-height:40%;
}
</style>
<div class="header">
<h1>Select an image for classification</h1>
<p></p>
</div>
<p>
{% with messages = get_flashed_messages() %}
{% if messages %}
Label: {{ messages[0] }}
Filename: {{ messages[1] }}
{% endif %}
{% endwith %}
</p>
<form method="post" action="/" enctype="multipart/form-data">
<dl>
<p>
<input type="file" name="file" autocomplete="off" required>
</p>
</dl>
<p>
<input type="submit" value="Classify">
</p>
</form>
</body>