-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
647 lines (595 loc) · 28 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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Maven+Pro:400,700" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>COCEO – Fragebogen</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="underscore.js"></script>
<script type="text/javascript" src="backbone.js"></script>
<script type="text/javascript">
(function() {
var Question = Backbone.Model.extend({
defaults: {
title: "",
done: false,
sort: -1,
templateString: undefined,
serializedResult: "",
hints: undefined,
validInput: function() {
return true
}
},
initialize: function() {
this.set({sort: Question.nextSort(), silent: true})
}
}, {
sort: 0,
nextSort: function() {
this.sort += 1
return this.sort
}
})
var Questions = Backbone.Collection.extend({
ix: 0,
model: Question,
comparator: function(question) {
return question.get("sort")
},
current: function() {
return this.at(this.ix)
},
lastQuestion: function() {
return this.ix + 1 === this.length
}
})
var PanelView = Backbone.View.extend({
initialize: function() {
var th = this
this.collection.bind("change:done", function(value) {
// th.render()
})
},
events: {
"mouseup a.weiter": "weiter"
},
weiter: function() {
var cur = this.collection.current()
if(! cur.get("validInput").call()) {
PanelView.displayError("Bitte beantworten Sie erst die aktuelle Frage!")
return;
}
cur.set({serializedResult: $("#resultsform").serialize(), silent: true})
if(this.collection.lastQuestion()) {
this.collection.ix += 1
this.renderOverview()
router.navigate("/ende", true)
} else {
var current = this.collection.current()
this.collection.ix += 1
current.set({done: true})
router.navigate("/question/" + (this.collection.ix+1), true)
}
},
render: function() {
var current = this.collection.current()
var index = this.collection.ix
$("#questions span").html("Frage " + (index+1) + "/" + this.collection.length)
if(current.get("hints") !== undefined)
$("#questions h1").html(current.get("title") + "<br /><span>" + current.get("hints") + "</span>")
else
$("#questions h1").html(current.get("title"))
if(current.get("templateString") === undefined) {
current.set({templateString: _.template($("#template-a" + index).html()).call(), silent: true})
}
$("#answers").html(current.get("templateString"))
this.renderOverview()
},
renderOverview: function() {
$("#overview ul").html(_.template($("#template-overview").html(), {index: this.collection.ix, questions: this.collection.toJSON()}))
}
}, {
displayError: function(str) {
if(arguments.length === 1)
var dauer = 1500
$("#message div").html(str)
$("#message").fadeIn("fast")
setTimeout(function() {
$("#message").fadeOut("fast")
}, dauer)
}
})
var Router = Backbone.Router.extend({
routes: {
"/question/:id": "question",
"/umfrage-starten": "umfrageStarten",
"/ende": "ende",
"/danke": "danke",
"": "start"
},
question: function(id) {
if(enteredViaStartpage === false) {
router.navigate("", true)
return
}
questions.ix = id - 1
questions.current().set({done: false})
$("#start").hide()
$("#ende").hide()
$("#umfrage-starten").hide()
$("#panel").show()
panelView.render()
},
umfrageStarten: function() {
$("#panel").hide()
$("#start").hide()
$("#umfrage-starten a").click(function(e) {
if(! $("#einverstanden").attr("checked") == true) {
e.preventDefault()
PanelView.displayError("Bitte akzeptieren Sie erst die Einverständniserklärung!")
}
})
$("#umfrage-starten").show()
},
ende: function() {
$("#danke").hide()
$("#start").hide()
$("#panel").hide()
$("#ende").show()
$("#ende a.transfer").click(function(e) {
var result = questions.reduce(function(acc, it) { return acc + it.get("serializedResult")+"&" }, "")
router.navigate("/danke", true)
$.post("/save.php", result, function(xxx) {
if(xxx === "ok") {
;
} else {
alert("Leider ist ein Fehler aufgetreten!")
alert(xxx)
}
})
})
},
danke: function() {
$("#umfrage-starten").hide()
$("#start").hide()
$("#ende").hide()
$("#danke").show()
},
start: function() {
enteredViaStartpage = true
$("#umfrage-starten").hide()
$("#start").show()
}
})
var router, questions, panelView;
var enteredViaStartpage = false
$(function() {
router = new Router()
questions = new Questions(
[
new Question({title: "Ihr Geschlecht?", validInput: function() {
return $("input[name='q1_geschlecht']:checked").length > 0
}}),
new Question({title: "Ihr Alter?", validInput: function() {
return $("input[name='q2_alter']:checked").length > 0
}}),
new Question({title: "Ihr Beruf?", validInput: function() {
return $("input[name='q4_beruf']:checked").length > 0
}}),
new Question({title: "Ihr Wohnort?", validInput: function() {
return $("input[name='q3_wohnort']:checked").length > 0
}}),
new Question({title: "Sind Sie Internet-User?", validInput: function() {
return $("input[name='q5_internet']:checked").length > 0
}}),
new Question({title: "Nutzen Sie ein Smartphone?", validInput: function() {
return $("input[name='q15_smartphone']:checked").length > 0
}}),
new Question({title: "Wie häufig nutzen Sie die Gastronomie?", validInput: function() {
return $("input[name='q6_gastronomie']:checked").length > 0
}}),
new Question({title: "Wie aufgeschlossen sind Sie gegenüber Neuem?", hints: "(1 sehr aufgeschlossen, 5 nicht aufgeschlossen)", validInput: function() {
return $("input[name='q7_aufgeschlossen']:checked").length > 0
}}),
new Question({title: "Wie gestalten Sie Pausen in Ihrem Alltag/Job?"}),
new Question({title: "Wie routiniert ist Ihr Alltags-Ablauf?", hints: "(1 sehr routiniert, 5 jeder Tag anders)", validInput: function() {
return $("input[name='q13_routine']:checked").length > 0
}}),
new Question({title: "Skizzieren Sie den Ablauf Ihres Alltags"}),
new Question({title: "Wie würden Sie Ihren Kaffee-Konsum beschreiben?", validInput: function() {
return $("input[name='q9_konsum']:checked").length > 0
}}),
new Question({title: "Aus welchem Grund trinken Sie Kaffee?"}),
new Question({title: "Haben Sie einen Coffee-Shop (z.B: McCafé, Strabucks, CoffeeFellows usw.) in Ihrer Nähe?", validInput: function() {
return $("input[name='q8_nah']:checked").length > 0
}}),
new Question({title: "Mit welchen Speisen kombinieren Sie Kaffee am liebsten?"}),
new Question({title: "Welche Möglichkeiten haben Sie im Alltag Kaffee zu konsumieren?"}),
new Question({title: "Wie wichtig ist Ihnen die Bestandteile Ihres Kaffees (Kaffee-Sorte, Geschmackzusätze, Toppings usw.) selbst zu wählen?", hints: "(1 sehr wichtig, 5 unwichtig)", validInput: function() {
return $("input[name='q16_bestandteile']:checked").length > 0
}}),
new Question({title: "Haben Sie Interesse an einer Kaffee-Probe (analog zur Weinprobe)?", validInput: function() {
return $("input[name='q20_kaffeeprobe']:checked").length > 0
}}),
new Question({title: "Wie abwechslungsreich ist Ihr Kaffee-Bestellverhalten?", hints: "(1 immer etwas anderes, 5 immer genau das Gleiche)", validInput: function() {
return $("input[name='q22_bestellverhalten']:checked").length > 0
}}),
new Question({title: "Sie wollen sich nicht selbst etwas zubereiten, welchen Dienst nehmen Sie in Anspruch?"}),
new Question({title: "Wie viel Zeit sind Sie bereit für eine Online-Bestellung maximal aufzubringen?", validInput: function() {
return $("input[name='q12_bestelldauer']:checked").length > 0
}}),
new Question({title: "Wie wichtig sind Ihnen Hintergrund-Informationen zu bestellten Produkten?", hints: "(1 sehr wichtig, 5 unwichtig)", validInput: function() {
return $("input[name='q14_hintergrundinfos']:checked").length > 0
}}),
new Question({title: "Würden Sie unter Zeitdruck per \"Schnellbestellung\" (Bestelldauer unter 1 Minute) online etwas bestellen?", validInput: function() {
return $("input[name='q21_zeitdruck']:checked").length > 0
}})
])
panelView = new PanelView({el: $("#panel"), collection: questions})
Backbone.history.start()
})
})();
</script>
<style type="text/css">
body {
padding: 0px;
margin: 0px;
background: #6D7A8D;
font-family: "Maven Pro";
color:#333;
font-size: 18px;
}
a {
display: inline-block;
color: #ffc;
text-decoration: none;
border-bottom: 1px solid #ffc;
}
#ende, #danke, #start, #umfrage-starten {
display: none;
margin:0 auto;
width: 600px;
margin-top: 100px;
}
#panel {
display: none;
width: 1000px;
height:500px;
margin: 0 auto;
padding-top: 30px;
}
#overview {
float:left;
width: 210px;
padding: 0px 0px 0px 20px;
}
#questions {
float:left;
width: 750px;
min-height:550px;
padding: 10px;
}
#answers {
margin: 30px 0px 30px 0px;
line-height: 150%;
}
#questions span {
display: block;
font-size:0.8em;
color:#333;
}
#questions h1 span {
font-size:0.5em;
color:#333;
font-weight:normal;
}
h1 {
font-size:1.6em;
text-shadow: 2px 0px 1px #B2B6BD;
font-weight: 700;
color:#333;
}
#questions h1 {
display: inline-block;
margin:0px;
padding:0px;
}
#message {
display: none;
padding-top: 150px;
position: absolute;
left: 0px;
top: 0px;
z-index: 10;
width: 100%;
height: 560px;
}
#message > div {
margin: 0 auto;
width: 500px;
height: 120px;
background:#fff;
opacity: 0.9;
text-align:center;
padding-top: 80px;
box-shadow: 0 0 0.3em #000;
-moz-box-shadow: 0 0 0.3em #000;
-webkit-box-shadow: 0 0 0.3em #000;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
a.weiter, a.transfer {
position:relative;
display: inline-block;
padding: 8px 16px 8px 16px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
text-shadow: 2px 0px 1px #fff;
text-decoration: none;
text-align: center;
font-weight: 700;
background: #ffc;
color:#333;
}
a.weiter {
margin-top: 50px;
}
a.weiter:hover, a.transfer:hover {
background: #FFF782;
box-shadow: 0 1px 0.1em #000;
-moz-box-shadow: 0 1px 0.1em #000;
-webkit-box-shadow: 0 1px 0.1em #000;
}
a.weiter:active, a.transfer:active {
background: #FDF030;
box-shadow: 0 0 0 #000;
-moz-box-shadow: 0 0 0 #000;
-webkit-box-shadow: 0 0 0 #000;
top: 1px;
}
h2 {
font-size: 1em;
font-weight: 700;
}
#overview ul {
list-style: none;
margin: 0px;
padding: 0px;
}
#overview ul span {
display: block;
font-size:0.6em;
text-decoration: none;
color:#bbb;
padding:5px 2px 5px 2px;
border-top: 1px solid #999;
}
#overview ul li:last-child a {
border-bottom: 1px solid #999;
}
#answers strong {
display:block;
margin-top:20px;
}
#answers textarea {
width:600px;
height:80px;
}
</style>
<!--[if IE 7]>
<style type="text/css">
#overview ul span {
padding: 2px;
}
</style>
<![endif]-->
<script type="text/template" id="template-a0">
<input type="radio" id="q1_geschlecht_w" name="q1_geschlecht" value="w" /><label for="q1_geschlecht_w">Weiblich</label> <br/>
<input type="radio" id="q1_geschlecht_m" name="q1_geschlecht" value="m" /><label for="q1_geschlecht_m">Männlich</label>
</script>
<script type="text/template" id="template-a1">
<input type="radio" id="q2_alter_1" name="q2_alter" value="unter18" /><label for="q2_alter_1">Unter 18</label> <br />
<input type="radio" id="q2_alter_2" name="q2_alter" value="18bis29" /><label for="q2_alter_2">18 – 29</label> <br />
<input type="radio" id="q2_alter_3" name="q2_alter" value="30bis45" /><label for="q2_alter_3">30 – 45</label> <br />
<input type="radio" id="q2_alter_4" name="q2_alter" value="46bis60" /><label for="q2_alter_4">46 – 60</label> <br />
<input type="radio" id="q2_alter_5" name="q2_alter" value="ueber60" /><label for="q2_alter_5">Über 60</label> <br />
</script>
<script type="text/template" id="template-a2">
<input type="radio" id="q4_beruf_1" name="q4_beruf" value="Schüler" /><label for="q4_beruf_1">Schüler</label> <br/>
<input type="radio" id="q4_beruf_2" name="q4_beruf" value="Student" /><label for="q4_beruf_2">Student</label> <br/>
<input type="radio" id="q4_beruf_3" name="q4_beruf" value="Auszubildende/r" /><label for="q4_beruf_3">Auszubildende/r</label> <br/>
<input type="radio" id="q4_beruf_4" name="q4_beruf" value="Selbständig" /><label for="q4_beruf_4">Selbständig</label> <br/>
<input type="radio" id="q4_beruf_5" name="q4_beruf" value="LeitenderAngestellter" /><label for="q4_beruf_5">Leitende/r Angestellte/r</label> <br/>
<input type="radio" id="q4_beruf_8" name="q4_beruf" value="Angestellter" /><label for="q4_beruf_8">Angestellte/r</label> <br/>
<input type="radio" id="q4_beruf_6" name="q4_beruf" value="Beamter" /><label for="q4_beruf_6">Beamte/r</label> <br/>
<input type="radio" id="q4_beruf_9" name="q4_beruf" value="Rentner" /><label for="q4_beruf_9">Rentner/in</label> <br/>
<input type="radio" id="q4_beruf_7" name="q4_beruf" value="OhneBeruf" /><label for="q4_beruf_7">Ohne Beruf</label> <br/>
</script>
<script type="text/template" id="template-a3">
<input type="radio" id="q3_wohnort_1" name="q3_wohnort" value="Großstadt" /><label for="q3_wohnort_1">Großstadt</label> <br/>
<input type="radio" id="q3_wohnort_2" name="q3_wohnort" value="Kleinstadt" /><label for="q3_wohnort_2">Kleinstadt</label> <br/>
<input type="radio" id="q3_wohnort_3" name="q3_wohnort" value="Dorf" /><label for="q3_wohnort_3">Dorf</label> <br/>
</script>
<script type="text/template" id="template-a4">
<input type="radio" id="q5_internet_1" name="q5_internet" value="täglich" /><label for="q5_internet_1">Täglich</label> <br/>
<input type="radio" id="q5_internet_2" name="q5_internet" value="MehrmalsDieWoche" /><label for="q5_internet_2">Mehrmals die Woche</label> <br/>
<input type="radio" id="q5_internet_3" name="q5_internet" value="MehrmalsImMonat" /><label for="q5_internet_3">Mehrmals im Monat</label> <br/>
<input type="radio" id="q5_internet_4" name="q5_internet" value="Selten" /><label for="q5_internet_4">Selten</label> <br/>
<strong>Grund der Nutzung des Internet?</strong>
<textarea name="q5_internet_grund"></textarea>
</script>
<script type="text/template" id="template-a5">
<input type="radio" id="q15_smartphone_1" name="q15_smartphone" value="ja" /><label for="q15_smartphone_1">Ja</label> <br/>
<input type="radio" id="q15_smartphone_2" name="q15_smartphone" value="nein" /><label for="q15_smartphone_2">Nein</label> <br/>
<strong>Wenn ja, was für eines?</strong>
<input type="text" name="q15_smartphone_typ" />
</script>
<script type="text/template" id="template-a6">
<input type="radio" id="q6_gastronomie_1" name="q6_gastronomie" value="täglich" /><label for="q6_gastronomie_1">Täglich</label> <br/>
<input type="radio" id="q6_gastronomie_2" name="q6_gastronomie" value="MehrmalsDieWoche" /><label for="q6_gastronomie_2">Mehrmals die Woche</label> <br/>
<input type="radio" id="q6_gastronomie_3" name="q6_gastronomie" value="MehrmalsImMonat" /><label for="q6_gastronomie_3">Mehrmals im Monat</label> <br/>
<input type="radio" id="q6_gastronomie_4" name="q6_gastronomie" value="Selten" /><label for="q6_gastronomie_4">Selten</label> <br/>
</script>
<script type="text/template" id="template-a7">
<input type="radio" id="q7_aufgeschlossen_1" name="q7_aufgeschlossen" value="1" /><label for="q7_aufgeschlossen_1">1</label> <br/>
<input type="radio" id="q7_aufgeschlossen_2" name="q7_aufgeschlossen" value="2" /><label for="q7_aufgeschlossen_2">2</label> <br/>
<input type="radio" id="q7_aufgeschlossen_3" name="q7_aufgeschlossen" value="3" /><label for="q7_aufgeschlossen_3">3</label> <br/>
<input type="radio" id="q7_aufgeschlossen_4" name="q7_aufgeschlossen" value="4" /><label for="q7_aufgeschlossen_4">4</label> <br/>
<input type="radio" id="q7_aufgeschlossen_5" name="q7_aufgeschlossen" value="5" /><label for="q7_aufgeschlossen_5">5</label> <br/>
</script>
<script type="text/template" id="template-a8">
<textarea name="q17_pausen"></textarea>
</script>
<script type="text/template" id="template-a9">
<input type="radio" id="q13_routine_1" name="q13_routine" value="1" /><label for="q13_routine_1">1</label> <br/>
<input type="radio" id="q13_routine_2" name="q13_routine" value="2" /><label for="q13_routine_2">2</label> <br/>
<input type="radio" id="q13_routine_3" name="q13_routine" value="3" /><label for="q13_routine_3">3</label> <br/>
<input type="radio" id="q13_routine_4" name="q13_routine" value="4" /><label for="q13_routine_4">4</label> <br/>
<input type="radio" id="q13_routine_5" name="q13_routine" value="5" /><label for="q13_routine_5">5</label> <br/>
</script>
<script type="text/template" id="template-a10">
<textarea name="tagesablauf"></textarea>
</script>
<script type="text/template" id="template-a11">
<input type="radio" id="q9_konsum_1" name="q9_konsum" value="KeinKaffeeTrinker" /><label for="q9_konsum_1">Kein Kaffee-Trinker</label> <br/>
<input type="radio" id="q9_konsum_2" name="q9_konsum" value="1bis3" /><label for="q9_konsum_2">1 – 3 täglich</label> <br/>
<input type="radio" id="q9_konsum_3" name="q9_konsum" value="ÖfterAls1bis3" /><label for="q9_konsum_3">Öfter</label> <br/>
<input type="radio" id="q9_konsum_4" name="q9_konsum" value="Seltener" /><label for="q9_konsum_4">Seltener</label> <br/>
</script>
<script type="text/template" id="template-a12">
<textarea name="q19_grund"></textarea>
</script>
<script type="text/template" id="template-a13">
<strong>Wenn ja, nutzen Sie dieses Angebot regelmäßig?</strong>
<input type="radio" id="q8_nah_1" name="q8_nah" value="ja_ja" /><label for="q8_nah_1">Ja</label>
<input type="radio" id="q8_nah_2" name="q8_nah" value="ja_nein" /><label for="q8_nah_2">Nein</label>
<br />
Begründung:<br />
<textarea name="q8_nah_grund1" style="height:50px;"></textarea>
<strong>Wenn nein, hätten Sie gern ein solches Angebot?</strong>
<input type="radio" id="q8_nah_3" name="q8_nah" value="nein_ja" /><label for="q8_nah_3">Ja</label>
<input type="radio" id="q8_nah_4" name="q8_nah" value="nein_nein" /><label for="q8_nah_4">Nein</label>
<br />
Begründung:<br />
<textarea name="q8_nah_grund2" style="height: 50px;"></textarea>
</script>
<script type="text/template" id="template-a14">
<textarea name="q10_kombination"></textarea>
</script>
<script type="text/template" id="template-a15">
<textarea name="q11_alltag"></textarea>
<strong>Wie zufrieden sind Sie mit diesen Möglichkeiten?</strong>
<input type="radio" id="q11_alltag_zufrieden_1" name="q11_alltag_zufrieden" value="SehrZufrieden" /><label for="q11_alltag_zufrieden_1">Sehr zufrieden</label> <br/>
<input type="radio" id="q11_alltag_zufrieden_2" name="q11_alltag_zufrieden" value="Zufrieden" /><label for="q11_alltag_zufrieden_2">Zufrieden</label> <br/>
<input type="radio" id="q11_alltag_zufrieden_3" name="q11_alltag_zufrieden" value="Unzufrieden" /><label for="q11_alltag_zufrieden_3">Unzufrieden</label> <br/>
</script>
<script type="text/template" id="template-a16">
<input type="radio" id="q16_bestandteile_1" name="q16_bestandteile" value="1" /><label for="q16_bestandteile_1">1</label> <br/>
<input type="radio" id="q16_bestandteile_2" name="q16_bestandteile" value="2" /><label for="q16_bestandteile_2">2</label> <br/>
<input type="radio" id="q16_bestandteile_3" name="q16_bestandteile" value="3" /><label for="q16_bestandteile_3">3</label> <br/>
<input type="radio" id="q16_bestandteile_4" name="q16_bestandteile" value="4" /><label for="q16_bestandteile_4">4</label> <br/>
<input type="radio" id="q16_bestandteile_5" name="q16_bestandteile" value="5" /><label for="q16_bestandteile_5">5</label> <br/>
</script>
<script type="text/template" id="template-a17">
<input type="radio" id="q20_kaffeeprobe_1" name="q20_kaffeeprobe" value="ja" /><label for="q20_kaffeeprobe_1">Ja</label> <br/>
<input type="radio" id="q20_kaffeeprobe_2" name="q20_kaffeeprobe" value="nein" /><label for="q20_kaffeeprobe_2">Nein</label> <br/>
<input type="radio" id="q20_kaffeeprobe_3" name="q20_kaffeeprobe" value="vielleicht" /><label for="q20_kaffeeprobe_3">Vielleicht</label> <br/>
</script>
<script type="text/template" id="template-a18">
<input type="radio" id="q22_bestellverhalten_1" name="q22_bestellverhalten" value="1" /><label for="q22_bestellverhalten_1">1</label> <br/>
<input type="radio" id="q22_bestellverhalten_2" name="q22_bestellverhalten" value="2" /><label for="q22_bestellverhalten_2">2</label> <br/>
<input type="radio" id="q22_bestellverhalten_3" name="q22_bestellverhalten" value="3" /><label for="q22_bestellverhalten_3">3</label> <br/>
<input type="radio" id="q22_bestellverhalten_4" name="q22_bestellverhalten" value="4" /><label for="q22_bestellverhalten_4">4</label> <br/>
<input type="radio" id="q22_bestellverhalten_5" name="q22_bestellverhalten" value="5" /><label for="q22_bestellverhalten_5">5</label> <br/>
</script>
<script type="text/template" id="template-a19">
<textarea name="q18_dienst"></textarea>
</script>
<script type="text/template" id="template-a20">
<input type="radio" id="q12_bestelldauer_1" name="q12_bestelldauer" value="1Bis5Min" /><label for="q12_bestelldauer_1">1 – 5 Minuten</label> <br/>
<input type="radio" id="q12_bestelldauer_2" name="q12_bestelldauer" value="5Bis10Min" /><label for="q12_bestelldauer_2">5 – 10 Minuten</label> <br/>
<input type="radio" id="q12_bestelldauer_3" name="q12_bestelldauer" value="10Bis20Min" /><label for="q12_bestelldauer_3">10 – 20 Minuten</label> <br/>
</script>
<script type="text/template" id="template-a21">
<input type="radio" id="q14_hintergrundinfos_1" name="q14_hintergrundinfos" value="1" /><label for="q14_hintergrundinfos_1">1</label> <br/>
<input type="radio" id="q14_hintergrundinfos_2" name="q14_hintergrundinfos" value="2" /><label for="q14_hintergrundinfos_2">2</label> <br/>
<input type="radio" id="q14_hintergrundinfos_3" name="q14_hintergrundinfos" value="3" /><label for="q14_hintergrundinfos_3">3</label> <br/>
<input type="radio" id="q14_hintergrundinfos_4" name="q14_hintergrundinfos" value="4" /><label for="q14_hintergrundinfos_4">4</label> <br/>
<input type="radio" id="q14_hintergrundinfos_5" name="q14_hintergrundinfos" value="5" /><label for="q14_hintergrundinfos_5">5</label> <br/>
</script>
<script type="text/template" id="template-a22">
<input type="radio" id="q21_zeitdruck_1" name="q21_zeitdruck" value="ja" /><label for="q21_zeitdruck_1">Ja</label> <br/>
<input type="radio" id="q21_zeitdruck_2" name="q21_zeitdruck" value="nein" /><label for="q21_zeitdruck_2">Nein</label> <br/>
<input type="radio" id="q21_zeitdruck_3" name="q21_zeitdruck" value="vielleicht" /><label for="q21_zeitdruck_3">Vielleicht</label> <br/>
</script>
<script type="text/template" id="template-overview">
<% _.each(questions, function(q) { %>
<% if((index+1) > q.sort) { %>
<li data-title="<%= q.title %>"><span style="color:#ccc;" href="#"><%= "✓ " + q.sort + ". " + (q.title.length >= 30 ? q.title.substring(0, 27)+"..." : q.title) %></span></li>
<% } else { %>
<li data-title="<%= q.title %>"><span href="#" style="<%= (index+1) === q.sort ? "color:#333" : "normal" %>"><%= "→ " + q.sort + ". " + (q.title.length >= 30 ? q.title.substring(0, 27)+"..." : q.title) %></span></li>
<% } %>
<% }); %>
</script>
</head>
<body>
<div id="message">
<div>
</div>
</div>
<div id="start" style="display:block;">
<h1>Einführung</h1>
<p>
Im Rahmen meiner Bachelor-Arbeit entwickle ich ein Web-Interface für einen Coffee-Shop.
</p>
<p>
"Coceo – the way like it" bietet Kunden die Möglichkeit online Kaffee, Cocktails und Snacks zu bestellen und liefern zu lassen.
</p>
<p>
Diese Befragung hilft mir den Service, die Bedienung und die Funktionalität des Interfaces optimal für die Zielgruppe zu gestalten und zu implementieren.
</p>
<p>
Alle Angaben werden vertraulich behandelt und nicht weitergegeben. Im voraus schon vielen Dank für die Mithilfe.
</p>
<p>
Dauer ca: 10 min.
</p>
<a href="#/umfrage-starten">Weiter</a>
</div>
<div id="umfrage-starten">
<h1>Einverständniserklärung</h1>
<p>
<input type="checkbox" id="einverstanden" style="width:18px;height:18px;" /><label for="einverstanden">Ich erkläre hiermit meine freiwillige Teilnahme an dieser Studie und bin damit einverstanden, dass meine Angaben für diese Recherche verwendet werden.</label>
</p>
<a href="#/question/1">Umfrage jetzt starten</a>
</div>
<div id="panel">
<div id="questions">
<img src="/img/coceo_logo.png" style="width:200px;margin-bottom: 20px;" />
<span></span>
<h1></h1>
<form id="resultsform">
<div id="answers"></div>
</form>
<a class="weiter" style="cursor:pointer">Zur nächsten Frage →</a>
</div>
<div id="overview">
<h2>Fragen – Überblick</h2>
<ul>
</ul>
</div>
</div>
<div id="ende" style="text-align: center">
Vielen Dank für Ihre Antworten, jetzt fehlt nur noch ein letzter Schritt
<br /><br /><br /><br />
<a class="transfer" style="margin-left: 25px;cursor:pointer;">Fragebogen speichern</a>
</div>
<div id="danke">
<h1>Abschluss</h1>
<p>
Vielen Dank, dass Sie sich die Zeit für die Teilnahme genommen haben!</p><p>
Das Ergebnis dieses Projekts können Sie sich ab Oktober auf http://coceo.piximo.de anschauen.</p>
</div>
</body>
</html>