Theme Park Experience Survey

Capture the magic of your guests' theme park experience with this comprehensive multi-page feedback form. Rate individual attractions, evaluate food and dining options, assess staff friendliness, and measure overall satisfaction. Features conditional logic to dive deeper into specific experiences and visual elements that match the fun atmosphere of entertainment venues.

Hospitality & Travel

Try the Form

Tell us about your magical day! Your feedback helps us create even better experiences.
 
30min
30 min
0120
Very dissatisfied
Very satisfied
N/A Poor Fair Good Great Amazing
Roller Coasters
Family Rides
Water Attractions
Shows & Entertainment
Themed Areas/Lands
 
 
 
 
 
 
 
 
Poor Fair Good Great Excellent
Friendliness*
Helpfulness*
Knowledge
Professional Appearance
0/5
0/5
 
 
 
Not at all likely
Extremely likely
 
0/5
 
Stay Connected
 
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
export function themeParkFeedback(form: FormTs) {
// Theme Park Experience Survey - Multi-page wizard with comprehensive feedback
// Demonstrates: Pages, StarRating, EmojiRating, MatrixQuestion, Slider, CheckboxList, dynamic styling
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Theme Park Experience Survey',
computedValue: () => 'Tell us about your magical day! Your feedback helps us create even better experiences.',
customStyles: {
background: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
color: 'white',
padding: '28px',
borderRadius: '16px',
textAlign: 'center',
fontSize: '15px'
}
});
});
 
// ============================================
// MULTI-PAGE WIZARD
// ============================================
const pages = form.addPages('surveyPages', { heightMode: 'current-page' });
 
// ============================================
// PAGE 1: Visit Overview
// ============================================
const page1 = pages.addPage('visitOverview');
 
page1.addRow(row => {
row.addTextPanel('page1Title', {
label: 'Your Visit',
customStyles: {
fontSize: '20px',
fontWeight: 'bold',
color: '#4c1d95',
marginBottom: '8px'
}
});
});
 
// Visit date and party size
page1.addRow(row => {
row.addDatepicker('visitDate', {
label: 'When did you visit?',
isRequired: true,
maxDate: () => new Date().toISOString().split('T')[0]
}, '1fr');
row.addDropdown('partySize', {
label: 'How many people in your group?',
options: [
{ id: '1', name: 'Just me' },
{ id: '2', name: '2 people' },
{ id: '3-4', name: '3-4 people' },
{ id: '5-6', name: '5-6 people' },
{ id: '7+', name: '7 or more' }
],
isRequired: true
}, '1fr');
});
 
// Visitor type
page1.addRow(row => {
row.addRadioButton('visitorType', {
label: 'What type of visitor are you?',
options: [
{ id: 'first-time', name: 'First-time visitor' },
{ id: 'occasional', name: 'Occasional visitor (1-2 times/year)' },
{ id: 'regular', name: 'Regular visitor (3+ times/year)' },
{ id: 'season-pass', name: 'Season pass holder' }
],
orientation: 'vertical'
});
});
 
// Overall first impression
page1.addRow(row => {
row.addEmojiRating('firstImpression', {
label: 'What was your first impression when you arrived?',
preset: 'satisfaction',
size: 'lg',
alignment: 'center'
});
});
 
// Navigation to page 2
page1.addSpacer({ height: '20px' });
page1.addRow(row => {
row.addButton('toPage2', {
label: 'Next: Rate Attractions',
onClick: () => pages.goToPage('attractions')
});
});
 
// ============================================
// PAGE 2: Attractions & Rides
// ============================================
const page2 = pages.addPage('attractions');
 
page2.addRow(row => {
row.addTextPanel('page2Title', {
label: 'Attractions & Rides',
customStyles: {
fontSize: '20px',
fontWeight: 'bold',
color: '#4c1d95',
marginBottom: '8px'
}
});
});
 
// Wait time satisfaction
page2.addRow(row => {
row.addSlider('avgWaitTime', {
label: 'What was the average wait time you experienced? (minutes)',
min: 0,
max: 120,
step: 5,
defaultValue: 30,
unit: 'min',
showValue: true
});
});
 
page2.addRow(row => {
row.addRatingScale('waitTimeSatisfaction', {
label: () => {
const wait = page2.slider('avgWaitTime')?.value() ?? 30;
if (wait <= 15) return 'How satisfied were you with the short wait times?';
if (wait <= 45) return 'How satisfied were you with the wait times?';
return 'The waits were long. How did that affect your experience?';
},
preset: 'satisfaction',
alignment: 'center'
});
});
 
// Attraction ratings matrix
page2.addSpacer({ height: '16px' });
page2.addRow(row => {
row.addMatrixQuestion('attractionRatings', {
label: 'Rate the attractions you experienced',
rows: [
{ id: 'roller-coasters', label: 'Roller Coasters', isRequired: false },
{ id: 'family-rides', label: 'Family Rides', isRequired: false },
{ id: 'water-attractions', label: 'Water Attractions', isRequired: false },
{ id: 'shows', label: 'Shows & Entertainment', isRequired: false },
{ id: 'themed-areas', label: 'Themed Areas/Lands', isRequired: false }
],
columns: [
{ id: 'na', label: 'N/A' },
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Great' },
{ id: '5', label: 'Amazing' }
],
fullWidth: true
});
});
 
// Favorite attraction
page2.addSpacer({ height: '16px' });
page2.addRow(row => {
row.addTextbox('favoriteAttraction', {
label: 'What was your favorite attraction and why?',
placeholder: 'Tell us about your favorite ride or show...',
maxLength: 200
});
});
 
// Navigation
page2.addSpacer({ height: '20px' });
page2.addRow(row => {
row.addButton('backToPage1', {
label: 'Back',
onClick: () => pages.goToPage('visitOverview')
}, '1fr');
row.addButton('toPage3', {
label: 'Next: Food & Dining',
onClick: () => pages.goToPage('dining')
}, '1fr');
});
 
// ============================================
// PAGE 3: Food & Dining
// ============================================
const page3 = pages.addPage('dining');
 
page3.addRow(row => {
row.addTextPanel('page3Title', {
label: 'Food & Dining',
customStyles: {
fontSize: '20px',
fontWeight: 'bold',
color: '#4c1d95',
marginBottom: '8px'
}
});
});
 
// Did they eat at the park?
page3.addRow(row => {
row.addRadioButton('didDine', {
label: 'Did you eat at the park?',
options: [
{ id: 'yes', name: 'Yes, we ate at the park' },
{ id: 'snacks', name: 'Just snacks and drinks' },
{ id: 'no', name: 'No, we brought our own food' }
],
orientation: 'vertical'
});
});
 
// Dining ratings (conditional)
const diningSection = page3.addSubform('diningRatings', {
title: 'Rate Your Dining Experience',
isVisible: () => {
const didDine = page3.radioButton('didDine')?.value();
return didDine === 'yes' || didDine === 'snacks';
}
});
 
diningSection.addRow(row => {
row.addStarRating('foodQuality', {
label: 'Food Quality',
maxStars: 5,
size: 'md'
}, '1fr');
row.addStarRating('foodVariety', {
label: 'Menu Variety',
maxStars: 5,
size: 'md'
}, '1fr');
});
 
diningSection.addRow(row => {
row.addStarRating('foodValue', {
label: 'Value for Money',
maxStars: 5,
size: 'md'
}, '1fr');
row.addStarRating('foodService', {
label: 'Service Speed',
maxStars: 5,
size: 'md'
}, '1fr');
});
 
// Dietary options
diningSection.addRow(row => {
row.addCheckboxList('dietaryNeeds', {
label: 'Were the following dietary options available?',
options: [
{ id: 'vegetarian', name: 'Vegetarian' },
{ id: 'vegan', name: 'Vegan' },
{ id: 'gluten-free', name: 'Gluten-Free' },
{ id: 'allergen-info', name: 'Allergen Information' }
],
orientation: 'horizontal'
});
});
 
// Navigation
page3.addSpacer({ height: '20px' });
page3.addRow(row => {
row.addButton('backToPage2', {
label: 'Back',
onClick: () => pages.goToPage('attractions')
}, '1fr');
row.addButton('toPage4', {
label: 'Next: Staff & Facilities',
onClick: () => pages.goToPage('staff')
}, '1fr');
});
 
// ============================================
// PAGE 4: Staff & Facilities
// ============================================
const page4 = pages.addPage('staff');
 
page4.addRow(row => {
row.addTextPanel('page4Title', {
label: 'Staff & Facilities',
customStyles: {
fontSize: '20px',
fontWeight: 'bold',
color: '#4c1d95',
marginBottom: '8px'
}
});
});
 
// Staff ratings
page4.addRow(row => {
row.addMatrixQuestion('staffRatings', {
label: 'Rate our team members',
rows: [
{ id: 'friendliness', label: 'Friendliness', isRequired: true },
{ id: 'helpfulness', label: 'Helpfulness', isRequired: true },
{ id: 'knowledge', label: 'Knowledge', isRequired: false },
{ id: 'appearance', label: 'Professional Appearance', isRequired: false }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Great' },
{ id: '5', label: 'Excellent' }
],
fullWidth: true
});
});
 
// Facilities
page4.addSpacer({ height: '16px' });
page4.addRow(row => {
row.addStarRating('cleanliness', {
label: 'Park Cleanliness',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
page4.addRow(row => {
row.addStarRating('restrooms', {
label: 'Restroom Cleanliness',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
// Safety perception
page4.addRow(row => {
row.addThumbRating('feltSafe', {
label: 'Did you feel safe throughout your visit?',
showLabels: true,
upLabel: 'Yes, very safe',
downLabel: 'Had concerns',
alignment: 'center'
});
});
 
// Safety concerns (conditional)
page4.addRow(row => {
row.addTextarea('safetyConcerns', {
label: 'Please describe your safety concerns',
placeholder: 'What made you feel unsafe?',
rows: 3,
isVisible: () => page4.thumbRating('feltSafe')?.value() === 'down',
isRequired: () => page4.thumbRating('feltSafe')?.value() === 'down'
});
});
 
// Navigation
page4.addSpacer({ height: '20px' });
page4.addRow(row => {
row.addButton('backToPage3', {
label: 'Back',
onClick: () => pages.goToPage('dining')
}, '1fr');
row.addButton('toPage5', {
label: 'Next: Overall Experience',
onClick: () => pages.goToPage('overall')
}, '1fr');
});
 
// ============================================
// PAGE 5: Overall Experience
// ============================================
const page5 = pages.addPage('overall');
 
page5.addRow(row => {
row.addTextPanel('page5Title', {
label: 'Overall Experience',
customStyles: {
fontSize: '20px',
fontWeight: 'bold',
color: '#4c1d95',
marginBottom: '8px'
}
});
});
 
// Overall rating
page5.addRow(row => {
row.addRatingScale('npsScore', {
label: 'How likely are you to recommend our park to friends and family?',
preset: 'nps',
showCategoryLabel: true,
showSegmentColors: true,
showConfettiOnPromoter: true,
isRequired: true
});
});
 
// Value rating
page5.addRow(row => {
row.addStarRating('valueForMoney', {
label: 'Value for Money',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
// Would visit again
page5.addRow(row => {
row.addRadioButton('wouldReturn', {
label: 'Would you visit again?',
options: [
{ id: 'definitely', name: 'Definitely yes!' },
{ id: 'probably', name: 'Probably' },
{ id: 'maybe', name: 'Maybe' },
{ id: 'unlikely', name: 'Unlikely' },
{ id: 'no', name: 'No' }
],
orientation: 'horizontal'
});
});
 
// What could be improved (for lower scores)
const improvementsSection = page5.addSubform('improvements', {
title: 'Help Us Improve',
isVisible: () => {
const nps = page5.ratingScale('npsScore')?.value();
return nps !== null && nps !== undefined && nps <= 6;
},
customStyles: { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' }
});
 
improvementsSection.addRow(row => {
row.addSuggestionChips('improvementAreas', {
label: 'What areas need the most improvement?',
suggestions: [
{ id: 'wait-times', name: 'Wait Times' },
{ id: 'ride-variety', name: 'Ride Variety' },
{ id: 'food-quality', name: 'Food Quality' },
{ id: 'food-prices', name: 'Food Prices' },
{ id: 'cleanliness', name: 'Cleanliness' },
{ id: 'staff', name: 'Staff Service' },
{ id: 'ticket-price', name: 'Ticket Price' },
{ id: 'parking', name: 'Parking' }
],
max: 3,
alignment: 'center'
});
});
 
// Best moments (for higher scores)
const highlightsSection = page5.addSubform('highlights', {
title: 'Share Your Magical Moments',
isVisible: () => {
const nps = page5.ratingScale('npsScore')?.value();
return nps !== null && nps !== undefined && nps >= 7;
},
customStyles: { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' }
});
 
highlightsSection.addRow(row => {
row.addSuggestionChips('highlights', {
label: 'What made your visit special?',
suggestions: [
{ id: 'rides', name: 'Thrilling Rides' },
{ id: 'shows', name: 'Amazing Shows' },
{ id: 'atmosphere', name: 'Magical Atmosphere' },
{ id: 'staff', name: 'Friendly Staff' },
{ id: 'food', name: 'Great Food' },
{ id: 'theming', name: 'Immersive Theming' },
{ id: 'family-time', name: 'Family Time' },
{ id: 'memories', name: 'Making Memories' }
],
max: 4,
alignment: 'center'
});
});
 
// Additional comments
page5.addSpacer({ height: '16px' });
page5.addRow(row => {
row.addTextarea('additionalComments', {
label: () => {
const nps = page5.ratingScale('npsScore')?.value();
if (nps !== null && nps !== undefined && nps >= 9) {
return 'Any magical moments you want to share?';
}
return 'Any additional comments or suggestions?';
},
placeholder: 'Share your thoughts...',
rows: 3,
autoExpand: true
});
});
 
// Contact section
const contactSection = page5.addSubform('contact', {
title: 'Stay Connected'
});
 
contactSection.addRow(row => {
row.addCheckbox('allowContact', {
label: 'I would like to receive updates about special events and promotions'
});
});
 
contactSection.addRow(row => {
row.addEmail('email', {
label: 'Email address',
placeholder: 'your@email.com',
isVisible: () => contactSection.checkbox('allowContact')?.value() === true,
isRequired: () => contactSection.checkbox('allowContact')?.value() === true
});
});
 
// Summary
const summarySection = page5.addSubform('summary', {
title: 'Your Feedback Summary',
isVisible: () => page5.ratingScale('npsScore')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const nps = page5.ratingScale('npsScore')?.value();
const category = page5.ratingScale('npsScore')?.npsCategory();
const wouldReturn = page5.radioButton('wouldReturn')?.value();
const valueRating = page5.starRating('valueForMoney')?.value();
 
if (nps === null || nps === undefined) return '';
 
let emoji = category === 'promoter' ? '🎢' : category === 'passive' ? '🎡' : '🎠';
let summary = `${emoji} Visit Summary\n`;
summary += `${'═'.repeat(25)}\n\n`;
summary += `Recommendation Score: ${nps}/10\n`;
 
if (valueRating) {
summary += `Value Rating: ${'★'.repeat(valueRating)}${'☆'.repeat(5 - valueRating)}\n`;
}
 
if (wouldReturn) {
const returnLabels: Record<string, string> = {
'definitely': 'Will definitely return!',
'probably': 'Likely to return',
'maybe': 'Might return',
'unlikely': 'Unlikely to return',
'no': 'Will not return'
};
summary += `\n${returnLabels[wouldReturn] || wouldReturn}`;
}
 
return summary;
},
customStyles: () => {
const category = page5.ratingScale('npsScore')?.npsCategory();
const base = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
if (category === 'promoter') return { ...base, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
if (category === 'passive') return { ...base, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
return { ...base, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
});
});
 
// Back button
page5.addSpacer({ height: '20px' });
page5.addRow(row => {
row.addButton('backToPage4', {
label: 'Back',
onClick: () => pages.goToPage('staff')
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => page5.ratingScale('npsScore')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your input helps us create more magical experiences. We hope to welcome you back soon for another adventure!'
});
}
 

Frequently Asked Questions

What aspects of the theme park experience does this form cover?

The form covers four main areas: attractions and rides (wait times, thrill level, variety), food and dining (quality, pricing, options), staff and service (friendliness, helpfulness, cleanliness), and overall experience (value for money, likelihood to return, recommendations).

Can I customize the list of attractions?

Yes, the attractions section uses a flexible matrix that you can easily customize. Add your specific rides, shows, and experiences by editing the rows in the MatrixQuestion component.

Is this form suitable for water parks too?

Absolutely! The form structure works for any entertainment venue - theme parks, water parks, adventure parks, or family entertainment centers. Simply customize the attraction names and categories to match your venue.

How does the conditional logic work?

The form adapts based on visitor responses. If someone rates attractions poorly, follow-up questions appear asking for specific improvement suggestions. Similarly, high ratings trigger questions about favorite moments to capture what works well.

Can visitors provide feedback anonymously?

Yes, contact information is optional. Visitors can choose whether to share their email for follow-up. This encourages honest feedback while giving you the option to reach out for service recovery.

How long does it take to complete?

The multi-page format makes it easy to complete in 3-5 minutes. Each page focuses on one aspect of the experience, and conditional questions mean visitors only see relevant follow-ups.