-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexisting-surveys.html
129 lines (116 loc) · 6.49 KB
/
existing-surveys.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
127
128
129
<!DOCTYPE HTML>
<html>
<head>
<title>Existing Surveys</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/layout.css" rel="stylesheet" type="text/css"/>
<link href="css/navbar.css" rel="stylesheet" type="text/css"/>
<link href="css/existing-surveys.css" rel="stylesheet" type="text/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/ohmage.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.11.0.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/configuration.js"></script>
<script type="text/javascript" src="js/Constant.js"></script>
<script type="text/javascript" src="js/underscore.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/insertXmlModal.js"></script>
<script type="text/javascript" src="js/surveyDisplay.js"></script>
<script type="text/javascript" src="js/promptUtil.js"></script>
<script type="text/javascript" src="js/existing-surveys.js"></script>
<script type="text/javascript" src="js/alerts.js"></script>
<script type="text/javascript" src="js/help-icon.js"></script>
<script type="text/javascript" src="js/json2xml.js"></script>
<script type="text/javascript" src="js/campaign-editor.js"></script>
<script type="text/javascript" src="js/breadcrumb.js"></script>
<script type="text/javascript" src="js/vkbeautify.0.99.00.beta.js"></script>
<script type="text/javascript" src="js/campaigntojson.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="span12 page-header">
<h1>Campaign Authoring</h1>
</div>
<div class="span3">
<div class="boxRounded boxDark" id="campaignMenu">
<div class="center">
<h5></h5>
<button type="button" class="btn btn-block" id="editCampaign">Edit Campaign Info</button>
<button type="button" class="btn btn-block" id="createNewSurvey">Create New Survey</button>
<button type="button" class="btn btn-block" id="editExistingSurvey">Edit Existing Surveys</button>
<button type="button" class="btn btn-block" id="viewSurveyXML">View Campaign XML</button>
<button type="button" class="btn btn-info btn-block" id="submitCampaign">Save Campaign to Server</button>
<button type="button" class="btn btn-danger btn-block" id="deleteCampaign">Exit Campaign</button>
</div>
<div class="xmlModal">
<!-- xml modal -->
</div>
<div id="loginModal" class="modal hide fade" tabindex="-1" aria-labelledby="loginModalLabel" aria-hidden="true">
<div class="modal-header centered">
Time Out. Please relogin
</div>
<div class="modal-body centered">
<div class="">
<form class="form-horizontal" id="login-form">
<div class="control-group centered">
<label class="control-label" for="inputUsername">Username</label>
<div class="controls">
<input type="text" class="span3" id="inputUsername" placeholder="Username">
</div>
</div>
<div class="control-group centered">
<label class="control-label" for="inputPassword">Password</label>
<div class="controls">
<input type="password" class="span3" id="inputPassword" placeholder="Password">
</div>
</div>
<div class="control-group">
<div class="controls">
<button type="submit" class="btn btn-info">Login</button>
</div>
</div>
</form>
</div>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
<div class="span9 content">
<div class="boxRounded boxDark content">
<h5 class="left">
Existing Surveys
<small>Reorder surveys by dragging!</small>
</h5>
<table>
<div class="existingSurveyss" id="existingSurveys">
<ul class="existingSurveysSortable" id="existingSurveysSortable">
</ul>
</div>
</table>
</div>
</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>