-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (120 loc) · 3.59 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>Graphify</title>
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/bootstrap-tooltip.js"></script>
<script type="text/javascript" src="js/bootstrap-popover.js"></script>
<script type="text/javascript" src="js/bootstrap-modal.js"></script>
<script type="text/javascript" src="js/lzw.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.min.css">
</head>
<body>
<div class="container">
<header>
<h1>Graphify</h1>
<p class="lead">The easiest way to make graphs!</p>
<ul class="nav nav-tabs">
<li class="active">
<a href="#">Home</a>
</li>
<li>
<a href="help.html">Help</a>
</li>
</ul>
</header>
<section id="input">
<div class="centered">
<table id="input_table">
<caption><input type="text" placeholder="Your Title" /></caption>
<thead>
<tr>
<td></td>
<th scope="col"></th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="options">
<form>
<div class="row">
<div class="span2 offset3">
<h3>Theme</h3>
<label class="radio">
<input type="radio" name="theme" value="light" checked />Light<br />
</label>
<label class="radio">
<input type="radio" name="theme" value="dark" />Dark<br />
</label>
</div>
<div class="span2">
<h3>Graph Type</h3>
<label class="radio">
<input type="radio" name="type" value="line" checked />Line<br />
</label>
<label class="radio">
<input type="radio" name="type" value="area" />Area<br />
</label>
<label class="radio">
<input type="radio" name="type" value="bar" />Bar<br />
</label>
<label class="radio">
<input type="radio" name="type" value="pie" />Pie<br />
</label>
</div>
<div class="span2">
<h3>Axis</h3>
<label class="radio">
<input type="radio" name="axis" value="x" checked />First column as category<br />
</label>
<label class="radio">
<input type="radio" name="axis" value="y" />First row as category<br />
</label>
</div>
</div>
<div class="row">
<div class="span2 offset5">
<a value="Generate!" id="generate_btn" class="btn-large btn btn-primary">Generate!</a>
</div>
</div>
</form>
</section>
<section id="result">
<div class="modal fade" id="myModal">
<div class="modal-header">
<button class="close" data-dismiss="modal">×</button>
<h3>Result</h3>
</div>
<div class="modal-body">
<div class="centered">
</div>
</div>
<div class="modal-footer">
<a href="#" class="btn" data-dismiss="modal">Close</a>
<a href="#" id="save_as_image" class="btn btn-primary disabled">Save as image</a>
<a href="#" id="embed" rel="tooltip" class="btn btn-primary">Embed</a>
</div>
</div>
</section>
</div>
</body>
</html>