Session/Talk Feedback Form

Enable attendees to provide instant feedback on individual conference sessions with this streamlined form. Designed for quick completion between sessions, it captures essential ratings on speaker performance, content quality, presentation pace, and actionable takeaways. The form uses emoji ratings for quick sentiment capture and star ratings for detailed evaluation. Conditional logic shows relevant follow-up questions based on ratings, helping organizers identify both star speakers and sessions that need improvement.

Events & ConferencesPopular

Try the Form

Help us improve future events by rating this session.
Session Details
 
Content Quality
Poor Fair Good Very Good Excellent
Relevance to my interests*
Depth of coverage
New/unique insights
Practical applicability
Clarity of explanations
Too Basic
Too Advanced
Speaker Evaluation
Poor Fair Good Very Good Excellent
Subject matter expertise*
Presentation skills
Audience engagement
Pacing (not too fast/slow)
Visual aids/slides quality
Handling Q&A
0/5
Session Format
 
 
Key Takeaways
Recommendation
Not at all likely
Extremely likely
Additional Comments
Feedback Summary
 
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
export function sessionFeedbackSurvey(form: FormTs) {
// Session/Talk Feedback Form
// Demonstrates: StarRating, EmojiRating, RatingScale, MatrixQuestion, SuggestionChips, dynamic labels
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Session Feedback',
computedValue: () => 'Help us improve future events by rating this session.',
customStyles: {
backgroundColor: '#8b5cf6',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Session Selection
// ============================================
const sessionSection = form.addSubform('sessionSection', {
title: 'Session Details'
});
 
sessionSection.addRow(row => {
row.addDropdown('sessionName', {
label: 'Which session did you attend?',
options: [
{ id: 'keynote-am', name: 'Opening Keynote' },
{ id: 'track-a1', name: 'Track A - Session 1' },
{ id: 'track-a2', name: 'Track A - Session 2' },
{ id: 'track-b1', name: 'Track B - Session 1' },
{ id: 'track-b2', name: 'Track B - Session 2' },
{ id: 'workshop', name: 'Workshop Session' },
{ id: 'panel', name: 'Panel Discussion' },
{ id: 'keynote-pm', name: 'Closing Keynote' }
],
placeholder: 'Select session...',
isRequired: true
}, '1fr');
row.addTextbox('speakerName', {
label: 'Speaker Name (if known)',
placeholder: 'e.g., John Smith'
}, '1fr');
});
 
// ============================================
// SECTION 2: Quick Rating
// ============================================
const quickSection = form.addSubform('quickSection', {
title: 'Quick Rating',
isVisible: () => sessionSection.dropdown('sessionName')?.value() !== null
});
 
quickSection.addRow(row => {
row.addEmojiRating('overallImpression', {
label: 'What was your overall impression of this session?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center',
isRequired: true
});
});
 
quickSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'Overall session quality',
maxStars: 5,
size: 'lg',
alignment: 'center',
showConfettiOnMax: true
});
});
 
// Dynamic feedback based on rating
quickSection.addRow(row => {
row.addTextPanel('ratingFeedback', {
isVisible: () => quickSection.starRating('overallRating')?.value() !== null,
computedValue: () => {
const rating = quickSection.starRating('overallRating')?.value();
if (rating === null || rating === undefined) return '';
if (rating >= 5) return 'Excellent! We are glad you loved this session!';
if (rating >= 4) return 'Great! Thanks for the positive feedback.';
if (rating >= 3) return 'Thanks for your feedback. How can we improve?';
return 'We are sorry this did not meet expectations. Please share details below.';
},
customStyles: () => {
const rating = quickSection.starRating('overallRating')?.value();
const base = { padding: '12px', borderRadius: '6px', textAlign: 'center', fontStyle: 'italic' };
if (rating === null || rating === undefined) return base;
if (rating >= 4) return { ...base, backgroundColor: '#d1fae5', color: '#065f46' };
if (rating >= 3) return { ...base, backgroundColor: '#fef3c7', color: '#92400e' };
return { ...base, backgroundColor: '#fee2e2', color: '#991b1b' };
}
});
});
 
// ============================================
// SECTION 3: Content Evaluation
// ============================================
const contentSection = form.addSubform('contentSection', {
title: 'Content Quality',
isVisible: () => quickSection.starRating('overallRating')?.value() !== null
});
 
contentSection.addRow(row => {
row.addMatrixQuestion('contentMatrix', {
label: 'Rate the following aspects of the content:',
rows: [
{ id: 'relevance', label: 'Relevance to my interests', isRequired: true },
{ id: 'depth', label: 'Depth of coverage' },
{ id: 'novelty', label: 'New/unique insights' },
{ id: 'practical', label: 'Practical applicability' },
{ id: 'clarity', label: 'Clarity of explanations' }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
contentSection.addRow(row => {
row.addRatingScale('techLevel', {
label: 'How was the technical level?',
preset: 'likert-5',
lowLabel: 'Too Basic',
highLabel: 'Too Advanced'
});
});
 
// ============================================
// SECTION 4: Speaker Evaluation
// ============================================
const speakerSection = form.addSubform('speakerSection', {
title: () => {
const speakerName = sessionSection.textbox('speakerName')?.value();
return speakerName ? `Rate ${speakerName}` : 'Speaker Evaluation';
},
isVisible: () => quickSection.starRating('overallRating')?.value() !== null
});
 
speakerSection.addRow(row => {
row.addMatrixQuestion('speakerMatrix', {
label: 'Rate the speaker on the following:',
rows: [
{ id: 'knowledge', label: 'Subject matter expertise', isRequired: true },
{ id: 'presentation', label: 'Presentation skills' },
{ id: 'engagement', label: 'Audience engagement' },
{ id: 'pace', label: 'Pacing (not too fast/slow)' },
{ id: 'slides', label: 'Visual aids/slides quality' },
{ id: 'qa', label: 'Handling Q&A' }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
speakerSection.addSpacer({ height: '16px' });
speakerSection.addRow(row => {
row.addStarRating('speakerOverall', {
label: 'Overall speaker rating',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
// ============================================
// SECTION 5: Pacing & Format
// ============================================
const formatSection = form.addSubform('formatSection', {
title: 'Session Format',
isVisible: () => quickSection.starRating('overallRating')?.value() !== null
});
 
formatSection.addRow(row => {
row.addEmojiRating('pacing', {
label: 'How was the session pacing?',
preset: 'custom',
emojis: [
{ id: 'too-slow', emoji: '🐢', label: 'Too Slow' },
{ id: 'slightly-slow', emoji: '🚶', label: 'A Bit Slow' },
{ id: 'just-right', emoji: '👌', label: 'Just Right' },
{ id: 'slightly-fast', emoji: '🏃', label: 'A Bit Fast' },
{ id: 'too-fast', emoji: '🚀', label: 'Too Fast' }
],
size: 'md',
showLabels: true,
alignment: 'center'
});
});
 
formatSection.addRow(row => {
row.addRadioButton('sessionLength', {
label: 'How was the session length?',
options: [
{ id: 'too-short', name: 'Too Short' },
{ id: 'just-right', name: 'Just Right' },
{ id: 'too-long', name: 'Too Long' }
],
orientation: 'horizontal'
}, '1fr');
row.addRadioButton('qaTime', {
label: 'Was there enough time for Q&A?',
options: [
{ id: 'no-qa', name: 'No Q&A' },
{ id: 'not-enough', name: 'Not Enough' },
{ id: 'just-right', name: 'Just Right' },
{ id: 'too-much', name: 'Too Much' }
],
orientation: 'horizontal'
}, '1fr');
});
 
// ============================================
// SECTION 6: Takeaways & Value
// ============================================
const takeawaySection = form.addSubform('takeawaySection', {
title: 'Key Takeaways',
isVisible: () => quickSection.starRating('overallRating')?.value() !== null
});
 
takeawaySection.addRow(row => {
row.addThumbRating('learnedSomething', {
label: 'Did you learn something new?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
size: 'lg',
alignment: 'center'
});
});
 
takeawaySection.addRow(row => {
row.addSuggestionChips('takeawayTypes', {
label: 'What will you take away from this session?',
suggestions: [
{ id: 'new-idea', name: 'New ideas' },
{ id: 'best-practice', name: 'Best practices' },
{ id: 'tools', name: 'Tools/resources' },
{ id: 'contacts', name: 'Networking contacts' },
{ id: 'inspiration', name: 'Inspiration' },
{ id: 'skills', name: 'New skills' },
{ id: 'perspective', name: 'New perspective' },
{ id: 'action-items', name: 'Action items' }
],
max: 3,
alignment: 'center'
});
});
 
takeawaySection.addSpacer({ height: '16px' });
takeawaySection.addRow(row => {
row.addTextarea('mainTakeaway', {
label: 'What was your #1 takeaway from this session?',
placeholder: 'Share the most valuable insight you gained...',
rows: 2
});
});
 
// ============================================
// SECTION 7: Recommendation
// ============================================
const recommendSection = form.addSubform('recommendSection', {
title: 'Recommendation',
isVisible: () => quickSection.starRating('overallRating')?.value() !== null
});
 
recommendSection.addRow(row => {
row.addRatingScale('recommendScore', {
label: 'Would you recommend this session to a colleague?',
preset: 'nps',
showCategoryLabel: true,
showSegmentColors: true,
showConfettiOnPromoter: true
});
});
 
recommendSection.addRow(row => {
row.addThumbRating('attendAgain', {
label: 'Would you attend another session by this speaker?',
showLabels: true,
upLabel: 'Definitely',
downLabel: 'Probably Not',
alignment: 'center'
});
});
 
// ============================================
// SECTION 8: Additional Feedback
// ============================================
const feedbackSection = form.addSubform('feedbackSection', {
title: 'Additional Comments',
isVisible: () => quickSection.starRating('overallRating')?.value() !== null
});
 
feedbackSection.addRow(row => {
row.addTextarea('whatWorked', {
label: 'What worked well in this session?',
placeholder: 'Share what you liked most...',
rows: 2
}, '1fr');
row.addTextarea('improvements', {
label: 'What could be improved?',
placeholder: 'Your suggestions for future sessions...',
rows: 2
}, '1fr');
});
 
feedbackSection.addRow(row => {
row.addTextarea('topicSuggestions', {
label: 'Any topics you would like to see covered in future events?',
placeholder: 'Suggest topics for future sessions...',
rows: 2
});
});
 
// ============================================
// SECTION 9: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Feedback Summary',
isVisible: () => quickSection.starRating('overallRating')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const sessionName = sessionSection.dropdown('sessionName')?.value();
const speakerName = sessionSection.textbox('speakerName')?.value();
const overall = quickSection.starRating('overallRating')?.value();
const impression = quickSection.emojiRating('overallImpression')?.value();
const speakerRating = speakerSection.starRating('speakerOverall')?.value();
const recommend = recommendSection.ratingScale('recommendScore')?.value();
const learned = takeawaySection.thumbRating('learnedSomething')?.value();
 
if (!overall) return '';
 
const sessionLabels: Record<string, string> = {
'keynote-am': 'Opening Keynote',
'track-a1': 'Track A - Session 1',
'track-a2': 'Track A - Session 2',
'track-b1': 'Track B - Session 1',
'track-b2': 'Track B - Session 2',
'workshop': 'Workshop Session',
'panel': 'Panel Discussion',
'keynote-pm': 'Closing Keynote'
};
 
const impressionLabels: Record<string, string> = {
'very-bad': 'Very Disappointed',
'bad': 'Disappointed',
'neutral': 'Neutral',
'good': 'Satisfied',
'excellent': 'Very Satisfied'
};
 
let summary = `Session Feedback Summary\n`;
summary += `${'='.repeat(26)}\n\n`;
 
if (sessionName) {
summary += `Session: ${sessionLabels[sessionName] || sessionName}\n`;
}
if (speakerName) {
summary += `Speaker: ${speakerName}\n`;
}
summary += '\n';
 
summary += `Overall Rating: ${'*'.repeat(overall)}${'*'.repeat(5 - overall)} (${overall}/5)\n`;
 
if (impression) {
summary += `Impression: ${impressionLabels[impression] || impression}\n`;
}
 
if (speakerRating) {
summary += `Speaker Rating: ${speakerRating}/5\n`;
}
 
if (recommend !== null && recommend !== undefined) {
summary += `Would Recommend: ${recommend}/10\n`;
}
 
if (learned) {
summary += `Learned Something New: ${learned === 'up' ? 'Yes' : 'No'}\n`;
}
 
return summary;
},
customStyles: () => {
const overall = quickSection.starRating('overallRating')?.value() || 0;
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (overall >= 4) {
return { ...baseStyles, backgroundColor: '#ede9fe', borderLeft: '4px solid #8b5cf6' };
} else if (overall >= 3) {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
}
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Session Feedback',
isVisible: () => quickSection.starRating('overallRating')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your input helps us curate better sessions and support our speakers. Enjoy the rest of the event!'
});
}
 

Frequently Asked Questions

How do I collect feedback during a multi-track conference?

Add a session selector dropdown at the start or share unique links/QR codes for each session. This ensures feedback is properly attributed to the correct talk.

Should I use this for keynotes vs. breakout sessions?

Yes, this form works for both. For keynotes, you might want to extend it with additional questions about impact and memorability, while breakout sessions can focus more on practical takeaways.

How quickly can attendees complete this survey?

Designed for 1-2 minute completion. The core rating takes 30 seconds, with optional detailed feedback for those who want to share more.

How do I share results with speakers?

Export aggregate ratings and anonymized comments for each speaker. Focus on constructive patterns rather than individual critical comments. Include both quantitative scores and qualitative highlights.

What is a good response rate for session feedback?

Aim for 20-40% response rate. Place QR codes prominently, keep surveys short, and consider incentives like prize drawings for completed surveys. Sending reminders at the end of the day can also boost responses.