Webinar Feedback Form

This webinar feedback form helps event organizers measure the success of their virtual presentations. It covers all critical aspects including content relevance and depth, speaker delivery and engagement, technical quality (audio/video), Q&A effectiveness, and actionable insights gained. The form uses smart conditional logic to show relevant follow-up questions based on ratings, helping you improve future webinars.

Events & Conferences

Try the Form

Help us improve our virtual events
Webinar Details
 
 
 
Overall Experience
0/5
Content Quality
Strongly Disagree
Strongly Agree
Too Basic
Too Advanced
Strongly Disagree
Strongly Agree
Speaker/Presenter
0/5
0/5
0/5
0/5
Strongly Disagree
Strongly Agree
Technical Experience
0/5
0/5
0/5
0/5
Q&A and Interaction
 
5
5
110
Duration & Timing
 
 
Value & Takeaways
Strongly Disagree
Strongly Agree
Future Topics
Would You Recommend?
Not at all likely
Extremely likely
Additional Feedback
Your Feedback Summary
😕 Webinar Feedback Summary ════════════════════════════ ⭐ Overall Rating: 0/5 stars
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
export function webinarFeedback(form: FormTs) {
// Webinar Feedback - Virtual event evaluation form
// Demonstrates: RatingScale, ThumbRating, Timepicker, Slider, dynamic labels, multi-section
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Webinar Feedback',
computedValue: () => 'Help us improve our virtual events',
customStyles: {
backgroundColor: '#7c3aed',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Webinar Details
// ============================================
const webinarDetails = form.addSubform('webinarDetails', {
title: 'Webinar Details',
customStyles: { backgroundColor: '#f5f3ff', padding: '16px', borderRadius: '8px' }
});
 
webinarDetails.addRow(row => {
row.addDropdown('webinarType', {
label: 'Type of Webinar',
options: [
{ id: 'educational', name: 'Educational/Training' },
{ id: 'product_demo', name: 'Product Demo' },
{ id: 'panel', name: 'Panel Discussion' },
{ id: 'workshop', name: 'Interactive Workshop' },
{ id: 'thought_leadership', name: 'Thought Leadership' },
{ id: 'ama', name: 'Ask Me Anything (AMA)' }
],
placeholder: 'Select webinar type'
}, '1fr');
row.addDropdown('attendanceType', {
label: 'How did you attend?',
options: [
{ id: 'live', name: 'Live (Real-time)' },
{ id: 'recording', name: 'Watched Recording' },
{ id: 'partial_live', name: 'Joined Late/Left Early' }
],
placeholder: 'Select attendance type'
}, '1fr');
});
 
webinarDetails.addRow(row => {
row.addDatepicker('webinarDate', {
label: 'Date of Webinar',
maxDate: new Date().toISOString()
}, '1fr');
row.addTimepicker('joinTime', {
label: 'Approximate Join Time',
tooltip: 'When did you join the webinar?'
}, '1fr');
});
 
webinarDetails.addRow(row => {
row.addRadioButton('registrationSource', {
label: 'How did you hear about this webinar?',
options: [
{ id: 'email', name: 'Email invitation' },
{ id: 'social', name: 'Social media' },
{ id: 'colleague', name: 'Colleague/Friend' },
{ id: 'website', name: 'Company website' },
{ id: 'other', name: 'Other' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 2: Overall Experience
// ============================================
const overallSection = form.addSubform('overallSection', {
title: 'Overall Experience',
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
overallSection.addRow(row => {
row.addEmojiRating('overallMood', {
label: 'How would you rate your overall webinar experience?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'Overall Webinar Rating',
maxStars: 5,
size: 'xl',
alignment: 'center',
showConfettiOnMax: true
});
});
 
// ============================================
// SECTION 3: Content Quality
// ============================================
const contentSection = form.addSubform('contentSection', {
title: 'Content Quality',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#faf5ff' }
});
 
contentSection.addRow(row => {
row.addRatingScale('contentRelevance', {
preset: 'likert-5',
label: 'The content was relevant to my needs',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
size: 'md'
});
});
 
contentSection.addRow(row => {
row.addRatingScale('contentDepth', {
preset: 'likert-5',
label: 'The content had the right level of depth',
lowLabel: 'Too Basic',
highLabel: 'Too Advanced',
size: 'md'
});
});
 
contentSection.addRow(row => {
row.addRatingScale('contentClarity', {
preset: 'likert-5',
label: 'The content was clear and easy to understand',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
size: 'md'
});
});
 
contentSection.addRow(row => {
row.addThumbRating('metExpectations', {
label: 'Did the webinar meet your expectations?',
showLabels: true,
upLabel: 'Yes, met/exceeded',
downLabel: 'No, fell short',
alignment: 'left'
});
});
 
// Follow-up for unmet expectations
contentSection.addRow(row => {
row.addTextarea('expectationGap', {
label: 'What were you hoping to learn that wasn\'t covered?',
placeholder: 'Help us understand what we missed...',
rows: 2,
autoExpand: true,
isVisible: () => contentSection.thumbRating('metExpectations')?.value() === 'down'
});
});
 
// ============================================
// SECTION 4: Speaker/Presenter Evaluation
// ============================================
const speakerSection = form.addSubform('speakerSection', {
title: 'Speaker/Presenter',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
speakerSection.addRow(row => {
row.addStarRating('speakerKnowledge', {
label: 'Subject Matter Expertise',
maxStars: 5,
size: 'md'
}, '1fr');
row.addStarRating('speakerClarity', {
label: 'Presentation Clarity',
maxStars: 5,
size: 'md'
}, '1fr');
});
 
speakerSection.addRow(row => {
row.addStarRating('speakerEngagement', {
label: 'Audience Engagement',
maxStars: 5,
size: 'md'
}, '1fr');
row.addStarRating('speakerPace', {
label: 'Presentation Pace',
maxStars: 5,
size: 'md',
tooltip: '5 stars = Perfect pace'
}, '1fr');
});
 
speakerSection.addRow(row => {
row.addRatingScale('speakerEnthusiasm', {
preset: 'likert-5',
label: 'The speaker was enthusiastic and engaging',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
size: 'md'
});
});
 
// ============================================
// SECTION 5: Technical Experience
// ============================================
const technicalSection = form.addSubform('technicalSection', {
title: 'Technical Experience',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#f0f9ff' }
});
 
technicalSection.addRow(row => {
row.addStarRating('audioQuality', {
label: 'Audio Quality',
maxStars: 5,
size: 'md'
}, '1fr');
row.addStarRating('videoQuality', {
label: 'Video/Visual Quality',
maxStars: 5,
size: 'md'
}, '1fr');
});
 
technicalSection.addRow(row => {
row.addStarRating('platformEase', {
label: 'Platform Ease of Use',
maxStars: 5,
size: 'md'
}, '1fr');
row.addStarRating('slidesQuality', {
label: 'Slides/Visuals Quality',
maxStars: 5,
size: 'md'
}, '1fr');
});
 
technicalSection.addRow(row => {
row.addThumbRating('hadTechIssues', {
label: 'Did you experience any technical issues?',
showLabels: true,
upLabel: 'Yes, had issues',
downLabel: 'No issues',
alignment: 'left'
});
});
 
technicalSection.addRow(row => {
row.addCheckboxList('techIssueTypes', {
label: 'What technical issues did you experience?',
options: [
{ id: 'audio_choppy', name: 'Audio was choppy/unclear' },
{ id: 'video_frozen', name: 'Video froze/lagged' },
{ id: 'connection', name: 'Connection problems' },
{ id: 'login', name: 'Trouble logging in' },
{ id: 'screen_share', name: 'Screen share issues' },
{ id: 'chat', name: 'Chat not working' }
],
orientation: 'vertical',
isVisible: () => technicalSection.thumbRating('hadTechIssues')?.value() === 'up'
});
});
 
// ============================================
// SECTION 6: Q&A and Interaction
// ============================================
const interactionSection = form.addSubform('interactionSection', {
title: 'Q&A and Interaction',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
interactionSection.addRow(row => {
row.addRadioButton('askedQuestion', {
label: 'Did you ask a question during the webinar?',
options: [
{ id: 'yes_answered', name: 'Yes, and it was answered' },
{ id: 'yes_not_answered', name: 'Yes, but not answered' },
{ id: 'no', name: 'No' }
],
orientation: 'horizontal'
});
});
 
interactionSection.addRow(row => {
row.addRatingScale('qaQuality', {
preset: 'likert-5',
label: 'The Q&A session was valuable',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
size: 'md',
isVisible: () => {
const asked = interactionSection.radioButton('askedQuestion')?.value();
return asked === 'yes_answered' || asked === 'yes_not_answered';
}
});
});
 
interactionSection.addRow(row => {
row.addSlider('interactionLevel', {
label: 'How interactive was the webinar?',
min: 1,
max: 10,
step: 1,
showValue: true,
defaultValue: 5
});
});
 
// ============================================
// SECTION 7: Duration & Timing
// ============================================
const timingSection = form.addSubform('timingSection', {
title: 'Duration & Timing',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#fefce8' }
});
 
timingSection.addRow(row => {
row.addRadioButton('durationFeel', {
label: 'How did you feel about the webinar length?',
options: [
{ id: 'too_short', name: 'Too short' },
{ id: 'just_right', name: 'Just right' },
{ id: 'too_long', name: 'Too long' }
],
orientation: 'horizontal'
});
});
 
timingSection.addRow(row => {
row.addRadioButton('timeConvenience', {
label: 'Was the scheduled time convenient for you?',
options: [
{ id: 'very_convenient', name: 'Very convenient' },
{ id: 'somewhat', name: 'Somewhat convenient' },
{ id: 'inconvenient', name: 'Inconvenient' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 8: Value & Takeaways
// ============================================
const valueSection = form.addSubform('valueSection', {
title: 'Value & Takeaways',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#f0fdf4' }
});
 
valueSection.addRow(row => {
row.addRatingScale('actionableInsights', {
preset: 'likert-5',
label: 'I gained actionable insights from this webinar',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
size: 'md'
});
});
 
valueSection.addRow(row => {
row.addThumbRating('wouldApply', {
label: 'Will you apply what you learned?',
showLabels: true,
upLabel: 'Yes, definitely',
downLabel: 'Probably not',
alignment: 'left'
});
});
 
valueSection.addRow(row => {
row.addTextarea('keyTakeaway', {
label: 'What was your biggest takeaway?',
placeholder: 'Share the most valuable insight you gained...',
rows: 2,
autoExpand: true
});
});
 
// ============================================
// SECTION 9: Topics of Interest
// ============================================
const topicsSection = form.addSubform('topicsSection', {
title: 'Future Topics',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
topicsSection.addRow(row => {
row.addSuggestionChips('interestedTopics', {
label: 'What topics would you like in future webinars?',
suggestions: [
{ id: 'best_practices', name: 'Best Practices' },
{ id: 'case_studies', name: 'Case Studies' },
{ id: 'advanced', name: 'Advanced Topics' },
{ id: 'beginner', name: 'Beginner Guides' },
{ id: 'trends', name: 'Industry Trends' },
{ id: 'tools', name: 'Tools & Technology' },
{ id: 'qa', name: 'Q&A Sessions' },
{ id: 'hands_on', name: 'Hands-on Workshops' }
],
max: 4,
alignment: 'center'
});
});
 
topicsSection.addRow(row => {
row.addTextarea('topicSuggestions', {
label: 'Any specific topics you\'d like us to cover?',
placeholder: 'Your suggestions help shape our content...',
rows: 2,
autoExpand: true
});
});
 
// ============================================
// SECTION 10: Recommendation
// ============================================
const recommendSection = form.addSubform('recommendSection', {
title: 'Would You Recommend?',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: () => {
const nps = recommendSection.ratingScale('npsScore')?.npsCategory();
if (nps === 'promoter') return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (nps === 'passive') return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
if (nps === 'detractor') return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px', border: '1px dashed #cbd5e1' };
}
});
 
recommendSection.addRow(row => {
row.addRatingScale('npsScore', {
preset: 'nps',
label: 'How likely are you to recommend our webinars to a colleague?',
showCategoryLabel: true,
showSegmentColors: true,
showConfettiOnPromoter: true
});
});
 
recommendSection.addRow(row => {
row.addCheckbox('attendFuture', {
label: 'I would attend future webinars from this organization'
});
});
 
// ============================================
// SECTION 11: Additional Feedback
// ============================================
const feedbackSection = form.addSubform('feedbackSection', {
title: 'Additional Feedback',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
feedbackSection.addRow(row => {
row.addTextarea('additionalComments', {
label: 'Any other feedback or suggestions?',
placeholder: 'We value all your thoughts...',
rows: 3,
autoExpand: true
});
});
 
feedbackSection.addRow(row => {
row.addCheckbox('allowContact', {
label: 'You may contact me for follow-up'
});
});
 
feedbackSection.addRow(row => {
row.addEmail('contactEmail', {
label: 'Email Address',
placeholder: 'your@email.com',
isVisible: () => feedbackSection.checkbox('allowContact')?.value() === true,
isRequired: () => feedbackSection.checkbox('allowContact')?.value() === true
});
});
 
// ============================================
// SUMMARY SECTION
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Your Feedback Summary',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const overall = overallSection.starRating('overallRating')?.value();
const nps = recommendSection.ratingScale('npsScore')?.value();
const npsCategory = recommendSection.ratingScale('npsScore')?.npsCategory();
const speakerKnowledge = speakerSection.starRating('speakerKnowledge')?.value();
const hadTechIssues = technicalSection.thumbRating('hadTechIssues')?.value();
const wouldApply = valueSection.thumbRating('wouldApply')?.value();
 
if (overall === null || overall === undefined) return '';
 
let emoji = overall >= 4 ? '🎓' : overall >= 3 ? '📺' : '😕';
 
let summary = `${emoji} Webinar Feedback Summary\n`;
summary += `${'═'.repeat(28)}\n\n`;
summary += `⭐ Overall Rating: ${overall}/5 stars\n`;
 
if (speakerKnowledge) {
summary += `🎤 Speaker: ${speakerKnowledge}/5 stars\n`;
}
 
if (hadTechIssues === 'up') {
summary += `⚠️ Technical issues reported\n`;
} else if (hadTechIssues === 'down') {
summary += `✅ No technical issues\n`;
}
 
if (wouldApply === 'up') {
summary += `💡 Will apply learnings\n`;
}
 
if (nps !== null && nps !== undefined) {
summary += `\n📊 Recommendation: ${nps}/10`;
if (npsCategory) {
summary += ` (${npsCategory.charAt(0).toUpperCase()}${npsCategory.slice(1)})`;
}
}
 
return summary;
},
customStyles: () => {
const rating = overallSection.starRating('overallRating')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (rating !== null && rating !== undefined && rating >= 4) {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (rating !== null && rating !== undefined && rating >= 3) {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else if (rating !== null && rating !== undefined) {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return baseStyles;
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your insights help us create better webinar experiences. We look forward to seeing you at our next event!'
});
}
 

Frequently Asked Questions

When should I send webinar feedback surveys?

Send immediately after the webinar ends - response rates drop significantly after 24 hours. Include the survey link in the post-webinar email or as the last slide. For live webinars, display the survey link before attendees leave.

What response rate should I expect?

Webinar feedback surveys typically see 15-30% response rates when sent immediately. Live polls during the webinar can achieve 60-80%. Offering recording access contingent on survey completion can boost rates to 40-50%.

How do I measure webinar success?

Key metrics include: overall satisfaction rating, content relevance score, speaker effectiveness, likelihood to attend future webinars (NPS-style), and actionable takeaways. Track these over time to measure improvement.

Should I ask about technical issues?

Yes, technical quality significantly impacts the learning experience. The form includes questions about audio/video quality and platform usability. This helps identify whether low ratings are content-related or technical issues.

Can I customize for different webinar types?

Absolutely. The form works for educational webinars, product demos, panel discussions, and workshops. Adjust the content questions based on your webinar type and goals.