-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.html
64 lines (49 loc) · 1.51 KB
/
graph.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
{% autoescape true %}
<html>
<head>
<link rel="stylesheet" type="text/css" href="script/style.css">
<link rel="stylesheet" href="https://yui-s.yahooapis.com/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="script/font.css">
<link rel="stylesheet" href="script/baby-blue.css">
</head>
<body>
<style scoped>
.button-success,
.button-secondary {
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.button-success {
background: rgb(28, 184, 65); /* this is a green */
}
</style>
<div id="container">
{% include "/header.html" %}
<div id="content">
<h2>
Rule-based modeling visualization
</h2>
<form action="{{ action }}" class="pure-form pure-form-stacked" method="post" enctype="multipart/form-data">
<fieldset>
<legend>Model submission: </legend>
Upload File: <input type="file" class="pure-button" name="file" accept=".bngl" required><br>
Return: <select class="pure-input" name="return">
<option>Regulatory Graph</option>
<option>Contact map</option>
<option>SBGN-ER</option>
<option>STD</option>
</select><br/>
<input class="button-success pure-button" type="submit" value="Submit">
</fieldset>
</form>
</div>
<div id="footer">
Copyright © Jose Juan Tapia, 2016
</div>
</div>
</div>
</body>
</html>
{% endautoescape %}