-
Notifications
You must be signed in to change notification settings - Fork 0
/
submitFile2.html
45 lines (36 loc) · 1.31 KB
/
submitFile2.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
{% autoescape true %}
<!--
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution 2.5 License
Name : Scoreboard
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20130602
-->
<html xmlns="http://www.w3.org/1999/xhtml">
{% include "pages/headTag.html" %}<body>
<div id="wrapper">
{% include "pages/header.html" %}
<div id="page" class="container">
<div id="content">
<div class="title">
</div>
<form class="pure-form pure-form-stacked pure-skin-mine" action="{{ action }}" method="post" enctype="multipart/form-data">
<legend><h2>Submit an annotated model</h2></legend>
<div class="pure-controls">
<label for="private" class="pure-checkbox"><input id="privacy" name="privacy" value="privacy" type="checkbox"> Private model </label>
Upload File: <input type="file" name="file"><br>
<button type="submit" class="pure-button pure-button-primary">Submit</button>
</div>
</fieldset>
</form>
</div>
{% include "pages/submitSidebar.html" %}
</div>
</div>
{% include "pages/footer.html" %}
</body>
</html>
{% endautoescape %}