Town Hall Meeting Feedback Form

This town hall meeting feedback form helps local governments and municipalities collect valuable citizen input after public meetings. The form captures feedback on meeting organization, speaker effectiveness, topic relevance to community needs, accessibility, and opportunities for public participation. Use insights to improve future meetings and strengthen civic engagement.

Events & Conferences

Try the Form

Your voice matters. Help us improve our community meetings.
Attendance Information
 
Overall Experience
0/5
Meeting Quality
Poor Fair Good Very Good Excellent
Meeting Organization*
Start time, agenda, flow
Presenters & Speakers*
Clarity and knowledge
Topics Covered*
Relevance to community needs
Public Participation
Opportunities to ask questions
Accessibility
Easy to attend and understand
Topic Relevance
50%
50 %
0100
Strongly Disagree
Strongly Agree
Strongly Disagree
Strongly Agree
Civic Engagement
Strongly Disagree
Strongly Agree
Strongly Disagree
Strongly Agree
Future Topics
Additional Comments
Feedback Summary
📝 TOWN HALL FEEDBACK ════════════════════════════ Overall: ☆☆☆☆☆ (0/5) Topic Relevance: 50%
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
export function townHallFeedback(form: FormTs) {
// Town Hall Meeting Feedback - Government/Municipal meeting evaluation
// Demonstrates: RatingScale (Likert), MatrixQuestion, ThumbRating, Slider, Dropdown, EmojiRating, SuggestionChips
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Town Hall Meeting Feedback',
computedValue: () => 'Your voice matters. Help us improve our community meetings.',
customStyles: {
backgroundColor: '#1e40af',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Attendance Information
// ============================================
const attendanceSection = form.addSubform('attendanceSection', {
title: 'Attendance Information',
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #dbeafe' }
});
 
attendanceSection.addRow(row => {
row.addDropdown('attendanceType', {
label: 'How did you attend the meeting?',
options: [
{ id: 'in-person', name: 'In-person at the venue' },
{ id: 'virtual', name: 'Online/Virtual' },
{ id: 'recording', name: 'Watched the recording later' }
],
placeholder: 'Select attendance type',
isRequired: true
}, '1fr');
row.addDropdown('residentType', {
label: 'Your relationship to the community',
options: [
{ id: 'resident', name: 'Resident' },
{ id: 'business', name: 'Business owner' },
{ id: 'worker', name: 'Work in the area' },
{ id: 'interested', name: 'Interested citizen' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select'
}, '1fr');
});
 
attendanceSection.addRow(row => {
row.addRadioButton('firstTime', {
label: 'Is this your first town hall meeting?',
options: [
{ id: 'yes', name: 'Yes, first time' },
{ id: 'few', name: 'Attended a few before' },
{ id: 'regular', name: 'Regular attendee' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 2: Overall Experience
// ============================================
const overallSection = form.addSubform('overallSection', {
title: 'Overall Experience',
customStyles: () => {
const rating = overallSection.starRating('overallRating')?.value();
if (rating !== null && rating !== undefined) {
if (rating >= 4) return { backgroundColor: '#dbeafe', padding: '16px', borderRadius: '8px', borderLeft: '4px solid #1e40af' };
if (rating >= 3) return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px', borderLeft: '4px solid #f59e0b' };
return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px', borderLeft: '4px solid #ef4444' };
}
return { padding: '16px', borderRadius: '8px', border: '1px dashed #93c5fd' };
}
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'How would you rate the overall town hall meeting?',
maxStars: 5,
size: 'xl',
alignment: 'center',
filledColor: '#1e40af',
showConfettiOnMax: true
});
});
 
overallSection.addRow(row => {
row.addEmojiRating('meetingMood', {
label: 'How did you feel about the meeting?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
// ============================================
// SECTION 3: Meeting Components Matrix
// ============================================
const componentsSection = form.addSubform('componentsSection', {
title: 'Meeting Quality',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #dbeafe' }
});
 
componentsSection.addRow(row => {
row.addMatrixQuestion('meetingAspects', {
label: 'Please rate the following aspects of the meeting:',
rows: [
{ id: 'organization', label: 'Meeting Organization', description: 'Start time, agenda, flow', isRequired: true },
{ id: 'speakers', label: 'Presenters & Speakers', description: 'Clarity and knowledge', isRequired: true },
{ id: 'topics', label: 'Topics Covered', description: 'Relevance to community needs', isRequired: true },
{ id: 'participation', label: 'Public Participation', description: 'Opportunities to ask questions', isRequired: false },
{ id: 'accessibility', label: 'Accessibility', description: 'Easy to attend and understand', isRequired: false }
],
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
});
});
 
// ============================================
// SECTION 4: Topic Relevance
// ============================================
const topicsSection = form.addSubform('topicsSection', {
title: 'Topic Relevance',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
topicsSection.addRow(row => {
row.addSlider('topicRelevance', {
label: 'How relevant were the topics to your concerns? (0-100%)',
min: 0,
max: 100,
step: 10,
showValue: true,
unit: '%',
defaultValue: 50
});
});
 
topicsSection.addRow(row => {
row.addRatingScale('informationQuality', {
preset: 'likert-5',
label: 'The information presented was clear and understandable',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
topicsSection.addRow(row => {
row.addRatingScale('questionsAnswered', {
preset: 'likert-5',
label: 'My questions and concerns were addressed',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
// ============================================
// SECTION 5: Virtual Experience (conditional)
// ============================================
const virtualSection = form.addSubform('virtualSection', {
title: 'Virtual Participation Experience',
isVisible: () => attendanceSection.dropdown('attendanceType')?.value() === 'virtual',
customStyles: { backgroundColor: '#eff6ff', padding: '16px', borderRadius: '8px' }
});
 
virtualSection.addRow(row => {
row.addMatrixQuestion('virtualAspects', {
label: 'Rate the virtual meeting experience:',
rows: [
{ id: 'audio', label: 'Audio Quality', isRequired: true },
{ id: 'video', label: 'Video Quality', isRequired: true },
{ id: 'chat', label: 'Chat/Q&A Features', isRequired: false },
{ id: 'ease', label: 'Ease of Joining', isRequired: false }
],
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
});
});
 
// ============================================
// SECTION 6: In-Person Experience (conditional)
// ============================================
const inPersonSection = form.addSubform('inPersonSection', {
title: 'Venue Experience',
isVisible: () => attendanceSection.dropdown('attendanceType')?.value() === 'in-person',
customStyles: { backgroundColor: '#eff6ff', padding: '16px', borderRadius: '8px' }
});
 
inPersonSection.addRow(row => {
row.addStarRating('venueRating', {
label: 'How would you rate the venue?',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#1e40af'
}, '1fr');
row.addStarRating('parkingRating', {
label: 'Parking/Transportation access',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#1e40af'
}, '1fr');
});
 
inPersonSection.addRow(row => {
row.addRatingScale('venueAccessibility', {
preset: 'likert-5',
label: 'The venue was accessible to all attendees',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
// ============================================
// SECTION 7: Civic Engagement
// ============================================
const engagementSection = form.addSubform('engagementSection', {
title: 'Civic Engagement',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
engagementSection.addRow(row => {
row.addRatingScale('voiceHeard', {
preset: 'likert-5',
label: 'I felt my voice was heard',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
engagementSection.addRow(row => {
row.addRatingScale('trustIncreased', {
preset: 'likert-5',
label: 'This meeting increased my trust in local government',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
engagementSection.addRow(row => {
row.addThumbRating('attendAgain', {
label: 'Would you attend future town halls?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center',
size: 'lg'
}, '1fr');
row.addThumbRating('recommend', {
label: 'Would you encourage neighbors to attend?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center',
size: 'lg'
}, '1fr');
});
 
// ============================================
// SECTION 8: Future Topics
// ============================================
const futureTopicsSection = form.addSubform('futureTopicsSection', {
title: 'Future Topics',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
futureTopicsSection.addRow(row => {
row.addSuggestionChips('wantedTopics', {
label: 'What topics would you like addressed in future meetings? (select up to 5)',
suggestions: [
{ id: 'infrastructure', name: 'Roads & Infrastructure' },
{ id: 'safety', name: 'Public Safety' },
{ id: 'zoning', name: 'Zoning & Development' },
{ id: 'environment', name: 'Environment & Parks' },
{ id: 'budget', name: 'Budget & Taxes' },
{ id: 'education', name: 'Schools & Education' },
{ id: 'housing', name: 'Housing & Affordability' },
{ id: 'transit', name: 'Public Transit' },
{ id: 'utilities', name: 'Utilities & Services' },
{ id: 'business', name: 'Local Business' }
],
max: 5,
alignment: 'center'
});
});
 
futureTopicsSection.addSpacer();
 
futureTopicsSection.addRow(row => {
row.addTextarea('specificTopics', {
label: 'Any specific issues you would like addressed?',
placeholder: 'Describe the topic or concern you would like to see discussed...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 9: General Comments
// ============================================
const commentsSection = form.addSubform('commentsSection', {
title: 'Additional Comments',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
commentsSection.addRow(row => {
row.addTextarea('suggestions', {
label: () => {
const rating = overallSection.starRating('overallRating')?.value();
if (rating !== null && rating !== undefined && rating >= 4) {
return 'What did you appreciate most about this meeting?';
}
return 'How can we improve future town hall meetings?';
},
placeholder: 'Share your thoughts...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 10: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Feedback Summary',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summary', {
computedValue: () => {
const overall = overallSection.starRating('overallRating')?.value();
const mood = overallSection.emojiRating('meetingMood')?.value();
const attendance = attendanceSection.dropdown('attendanceType')?.value();
const topicRelevance = topicsSection.slider('topicRelevance')?.value();
const voiceHeard = engagementSection.ratingScale('voiceHeard')?.value();
const attendAgain = engagementSection.thumbRating('attendAgain')?.value();
const recommend = engagementSection.thumbRating('recommend')?.value();
const topics = futureTopicsSection.suggestionChips('wantedTopics')?.value() || [];
 
if (overall === null || overall === undefined) return '';
 
const moodLabels: Record<string, string> = {
'very-bad': 'Very Dissatisfied',
'bad': 'Dissatisfied',
'neutral': 'Neutral',
'good': 'Satisfied',
'excellent': 'Very Satisfied'
};
 
const attendanceLabels: Record<string, string> = {
'in-person': 'In-person',
'virtual': 'Virtual',
'recording': 'Recording'
};
 
let emoji = '';
if (overall >= 4) emoji = '🏛️';
else if (overall >= 3) emoji = '👍';
else emoji = '📝';
 
let summary = `${emoji} TOWN HALL FEEDBACK\n`;
summary += `${'═'.repeat(28)}\n\n`;
 
if (attendance) {
summary += `Attended: ${attendanceLabels[attendance]}\n`;
}
 
summary += `Overall: ${'★'.repeat(overall)}${'☆'.repeat(5 - overall)} (${overall}/5)\n`;
 
if (mood) {
summary += `Feeling: ${moodLabels[mood] || mood}\n`;
}
 
if (topicRelevance !== null && topicRelevance !== undefined) {
summary += `\nTopic Relevance: ${topicRelevance}%\n`;
}
 
if (voiceHeard !== null && voiceHeard !== undefined) {
const voiceLabels = ['', 'Not at all', 'Slightly', 'Somewhat', 'Mostly', 'Completely'];
summary += `Voice Heard: ${voiceLabels[voiceHeard] || voiceHeard}\n`;
}
 
if (topics.length > 0) {
summary += `\n📋 Topics Requested: ${topics.length}`;
}
 
if (attendAgain !== null || recommend !== null) {
summary += '\n\n';
if (attendAgain) {
summary += `Attend again: ${attendAgain === 'up' ? '✅ Yes' : '❌ No'}\n`;
}
if (recommend) {
summary += `Recommend: ${recommend === 'up' ? '✅ Yes' : '❌ No'}`;
}
}
 
return summary;
},
customStyles: () => {
const overall = overallSection.starRating('overallRating')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '13px'
};
 
if (overall !== null && overall !== undefined) {
if (overall >= 4) {
return { ...baseStyles, backgroundColor: '#dbeafe', borderLeft: '4px solid #1e40af' };
} else if (overall >= 3) {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
}
return { ...baseStyles, backgroundColor: '#f8fafc', borderLeft: '4px solid #1e40af' };
}
});
});
 
// ============================================
// 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 input helps us make our town hall meetings more effective and responsive to community needs. We value your participation in local government.'
});
}
 

Frequently Asked Questions

How can I share this survey with town hall attendees?

Display a QR code at the meeting venue, include the link in meeting announcements, email it to registered attendees, post on the city website, and share on social media. Consider providing tablets at the exit for immediate feedback.

Should I require identification to submit feedback?

Generally, anonymous feedback gets more honest responses. However, if you need to follow up on specific concerns, you can optionally collect contact information. Balance transparency with accessibility.

How do I handle critical feedback about city officials?

View criticism as constructive input. Share aggregated feedback (not individual responses) with officials, focus on actionable improvements, and respond publicly to common concerns in future meetings.

Can this form work for virtual town halls?

Yes! The form includes questions about virtual participation quality. Customize the attendance type options and add platform-specific questions as needed.

What's the best way to act on this feedback?

Create a summary report for city council, identify top 3 improvement areas, address concerns in the next meeting, and publish a 'You Said, We Did' response to show citizens their feedback matters.