-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey.html
167 lines (157 loc) · 5.32 KB
/
survey.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<!-- These three are needed for reasons -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="lib/jquery.min.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/mystyle.css">
<script src="lib/bootstrap.min.js"></script>
<!-- herb favicon -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- Our script -->
<script type="text/javascript" src="js/surveyhandler.js"></script>
</head>
<body>
<div class="container">
<form action="submit_survey" method="post" id="survey">
<h3>Thank you for your participation! To finish this study, answer the following questionnaire. </h3>
<br>
1. What was the color of the table?
<div class="radio">
<label><input type="radio" name=1 value="Red">Red</label>
</div>
<div class="radio">
<label><input type="radio" name=1 value="Magenta">Magenta</label>
</div>
<div class="radio">
<label><input type="radio" name=1 value="Gray">Gray</label>
</div>
<div class="radio">
<label><input type="radio" name=1 value="Purple">Purple</label>
</div>
<br>
2. What is your gender?
<div class="radio">
<label><input type="radio" name=2 value="Male">Male</label>
</div>
<div class="radio">
<label><input type="radio" name=2 value="Female">Female</label>
</div>
<br>
3. What was your initial preference for doing the task?
<div class="radio">
<label><input type="radio" name=3 value="Door">Move the table outside so that I am facing the door</label>
</div>
<div class="radio">
<label><input type="radio" name=3 value="Red">Move the table outside so that I am facing the room</label>
</div>
<div class="radio">
<label><input type="radio" name=3 value="No pref">No Preference</label>
</div>
<br>
<p>5. Why do you think the robot behaved the way it did?</p>
<input type="text" name=4 class="fr2 form-control" placeholder="Comment on instructions">
<br>
<br>
<p> 6.Rate your agreement to the following statements </p>
<table class="table table-bordered table-hover fixed">
<!--caption></caption-->
<col width="100px" />
<col width="100px" />
<col width="100px" />
<col width="100px" />
<col width="100px" />
<col width="100px" />
<tr>
<th> </th>
<th>Strongly Disagree</th>
<th>Disagree</th>
<th>Neither Agree nor Disagree</th>
<th>Agree</th>
<th>Strongly Agree</th>
</tr>
<tr>
<th>HERB is trustworthy</th>
<td>
<label><input type="radio" name=5 value="1"> 1</label>
</td>
<td>
<label><input type="radio" name=5 value="2"> 2</label>
</td>
<td>
<label><input type="radio" name=5 value="3"> 3</label>
</td>
<td>
<label><input type="radio" name=5 value="4"> 4</label>
</td>
<td>
<label><input type="radio" name=5 value="5"> 5</label>
</td>
</tr>
<tr>
<th>I trusted HERB to do the right thing at the right time</th>
<td>
<label><input type="radio" name=6 value="1"> 1</label>
</td>
<td>
<label><input type="radio" name=6 value="2"> 2</label>
</td>
<td>
<label><input type="radio" name=6 value="3"> 3</label>
</td>
<td>
<label><input type="radio" name=6 value="4"> 4</label>
</td>
<td>
<label><input type="radio" name=6 value="5"> 5</label>
</td>
</tr>
<tr>
<th>HERB is intelligent</th>
<td>
<label><input type="radio" name=7 value="1"> 1</label>
</td>
<td>
<label><input type="radio" name=7 value="2"> 2</label>
</td>
<td>
<label><input type="radio" name=7 value="3"> 3</label>
</td>
<td>
<label><input type="radio" name=7 value="4"> 4</label>
</td>
<td>
<label><input type="radio" name=7 value="5"> 5</label>
</td>
</tr>
<tr>
<th>HERB made me change my mind during the task</th>
<td>
<label><input type="radio" name=8 value="1"> 1</label>
</td>
<td>
<label><input type="radio" name=8 value="2"> 2</label>
</td>
<td>
<label><input type="radio" name=8 value="3"> 3</label>
</td>
<td>
<label><input type="radio" name=8 value="4"> 4</label>
</td>
<td>
<label><input type="radio" name=8 value="5"> 5</label>
</td>
</tr>
</table>
<p class="text-danger hide">Please answer all questions</p>
<input value="Submit" type="submit" class="btn btn-success"/>
</form>
</div>
</body>
</html>