-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (62 loc) · 2.85 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
<!DOCTYPE HTML>
<html>
<head>
<title>Update Survey</title>
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css"/>
<link href="css/jquery-ui-1.11.0.min.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" type="text/css" href="css/jquery.dataTables.min.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery-cookie.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" charset="utf8" src="js/jquery.dataTables.min.js"></script>
<link href="css/layout.css" rel="stylesheet" type="text/css"/>
<link href="css/navbar.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="js/json2xml.js"></script>
<script type="text/javascript" src="js/campaigntojson.js"></script>
<script type="text/javascript" src="js/ohmage.js"></script>
<script type="text/javascript" src="js/update.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/campaign.js"></script>
<script type="text/javascript" src="js/help-icon.js"></script>
<script type="text/javascript" src="js/campaign-editor.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="span12 page-header">
<a href="new.html" class="pull-right btn btn-primary">Create New Campaign</a>
<h1>Campaign Authoring</h1>
</div>
<div class="span12">
<table id="campaigntable" class="table table-striped table-hover">
<thead>
<tr>
<th>Existing Campaigns</th>
<th>Created</th>
<th>State</th>
<th>Responses</th>
<th></th>
</tr>
</thead>
<tbody id="campaigntablebody"></tbody>
</table>
</div>
</div>
</div>
<!-- footer -->
<div id="footer">
<div class="container">
<div class="row">
<div class="span12">
<hr>
<div class="pull-right">
<!--<a href="#">Back to top</a>-->
</div>
</div>
</div>
</div>
</div>
</body>
</html>