-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimageChooser.html
28 lines (24 loc) · 1022 Bytes
/
imageChooser.html
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
<html>
<head>
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
</head>
<body>
<b> {{displayText }} </b>
<form action="/imageUploader" enctype="multipart/form-data" method="post">
<div><label>Long-sleeved shirt:</label></div>
<div><input type="file" name="ls_shirt_img"/></div>
<div><label>Short-sleeved shirt:</label></div>
<div><input type="file" name="ss_shirt_img"/></div>
<div><label>Pants:</label></div>
<div><input type="file" name="pants_img"/></div>
<div><label>Shorts:</label></div>
<div><input type="file" name="shorts_img"/></div>
<div><label>Shoes:</label></div>
<div><input type="file" name="shoes_img"/></div>
<div><label>Sandals:</label></div>
<div><input type="file" name="sandals_img"/></div>
<div><input type="submit" value="Upload images"></div>
</form>
<a href="{{ url }}">{{ url_linktext }}</a>
</body>
</html>