Municipal Website Feedback Form

This municipal website feedback form helps government agencies understand how citizens experience their online services. The form evaluates key aspects including navigation ease, content clarity, accessibility features, service findability, and mobile responsiveness. With conditional logic for different user scenarios and specific improvement areas, it provides actionable insights for enhancing digital government services.

Website & UX

Try the Form

Your feedback helps us serve our community better online.
About Your Visit
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
export function municipalWebsiteFeedback(form: FormTs) {
// Municipal Website Feedback Form
// Demonstrates: ThumbRating, RatingScale, MatrixQuestion, CheckboxList, conditional visibility, dynamic styling
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Help Us Improve Our Website',
computedValue: () => 'Your feedback helps us serve our community better online.',
customStyles: {
background: 'linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%)',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Visit Purpose
// ============================================
const purposeSection = form.addSubform('purposeSection', {
title: 'About Your Visit'
});
 
purposeSection.addRow(row => {
row.addDropdown('visitPurpose', {
label: 'What brought you to our website today?',
isRequired: true,
options: [
{ id: 'pay-bill', name: 'Pay a bill or fee' },
{ id: 'permit', name: 'Apply for a permit or license' },
{ id: 'find-info', name: 'Find information about services' },
{ id: 'report-issue', name: 'Report an issue or concern' },
{ id: 'meeting-agenda', name: 'View meeting agendas or minutes' },
{ id: 'contact', name: 'Find contact information' },
{ id: 'recreation', name: 'Recreation programs or facilities' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select your reason for visiting...'
});
});
 
purposeSection.addRow(row => {
row.addTextbox('otherPurpose', {
label: 'Please describe your purpose',
isVisible: () => purposeSection.dropdown('visitPurpose')?.value() === 'other',
isRequired: () => purposeSection.dropdown('visitPurpose')?.value() === 'other',
placeholder: 'What were you trying to do?'
});
});
 
purposeSection.addRow(row => {
row.addThumbRating('taskCompleted', {
label: 'Did you find what you were looking for?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
size: 'lg',
alignment: 'center'
});
});
 
// ============================================
// SECTION 2: Task Failure Follow-up (if not completed)
// ============================================
const failureSection = form.addSubform('failureSection', {
title: 'What Went Wrong?',
isVisible: () => purposeSection.thumbRating('taskCompleted')?.value() === 'down',
customStyles: { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' }
});
 
failureSection.addRow(row => {
row.addCheckboxList('failureReasons', {
label: 'What prevented you from completing your task?',
orientation: 'vertical',
options: [
{ id: 'not-found', name: 'Could not find the information/service' },
{ id: 'confusing', name: 'Website was confusing to navigate' },
{ id: 'broken-link', name: 'Encountered broken links or errors' },
{ id: 'outdated', name: 'Information seemed outdated' },
{ id: 'mobile-issue', name: 'Didn\'t work well on my device' },
{ id: 'too-slow', name: 'Website was too slow' },
{ id: 'login-issue', name: 'Problems with login/account' },
{ id: 'other', name: 'Other issue' }
]
});
});
 
failureSection.addSpacer();
 
failureSection.addRow(row => {
row.addTextarea('failureDetails', {
label: 'Please tell us more about the problem',
placeholder: 'Describe what happened...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 3: Website Experience Rating
// ============================================
const experienceSection = form.addSubform('experienceSection', {
title: 'Rate Your Experience',
isVisible: () => purposeSection.thumbRating('taskCompleted')?.value() !== null
});
 
experienceSection.addRow(row => {
row.addMatrixQuestion('websiteRatings', {
label: 'How would you rate the following aspects of our website?',
rows: [
{ id: 'navigation', label: 'Ease of navigation', isRequired: true },
{ id: 'content', label: 'Content clarity', isRequired: true },
{ id: 'design', label: 'Visual design', isRequired: false },
{ id: 'speed', label: 'Loading speed', isRequired: true },
{ id: 'mobile', label: 'Mobile experience', isRequired: false },
{ id: 'search', label: 'Search functionality', isRequired: false }
],
columns: [
{ id: 'poor', label: 'Poor' },
{ id: 'fair', label: 'Fair' },
{ id: 'good', label: 'Good' },
{ id: 'excellent', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 4: Accessibility
// ============================================
const accessibilitySection = form.addSubform('accessibilitySection', {
title: 'Accessibility',
isVisible: () => purposeSection.thumbRating('taskCompleted')?.value() !== null
});
 
accessibilitySection.addRow(row => {
row.addRadioButton('usesAccessibility', {
label: 'Do you use any accessibility features when browsing websites?',
orientation: 'horizontal',
options: [
{ id: 'yes', name: 'Yes' },
{ id: 'no', name: 'No' },
{ id: 'sometimes', name: 'Sometimes' }
]
});
});
 
accessibilitySection.addRow(row => {
row.addCheckboxList('accessibilityFeatures', {
label: 'Which accessibility features do you use?',
orientation: 'vertical',
isVisible: () => {
const val = accessibilitySection.radioButton('usesAccessibility')?.value();
return val === 'yes' || val === 'sometimes';
},
options: [
{ id: 'screen-reader', name: 'Screen reader' },
{ id: 'magnification', name: 'Text magnification' },
{ id: 'high-contrast', name: 'High contrast mode' },
{ id: 'keyboard-only', name: 'Keyboard navigation' },
{ id: 'voice-control', name: 'Voice control' },
{ id: 'other', name: 'Other assistive technology' }
]
});
});
 
accessibilitySection.addRow(row => {
row.addRatingScale('accessibilityRating', {
label: 'How accessible did you find our website?',
preset: 'satisfaction',
showSegmentColors: false,
lowLabel: 'Not accessible',
highLabel: 'Very accessible',
alignment: 'center',
isVisible: () => {
const val = accessibilitySection.radioButton('usesAccessibility')?.value();
return val === 'yes' || val === 'sometimes';
}
});
});
 
// ============================================
// SECTION 5: Overall Satisfaction
// ============================================
const satisfactionSection = form.addSubform('satisfactionSection', {
title: 'Overall Satisfaction',
isVisible: () => purposeSection.thumbRating('taskCompleted')?.value() !== null,
customStyles: () => {
const score = satisfactionSection.ratingScale('overallSatisfaction')?.value();
if (score !== null && score !== undefined) {
if (score >= 4) return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (score <= 2) return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
}
return { padding: '16px', borderRadius: '8px' };
}
});
 
satisfactionSection.addRow(row => {
row.addRatingScale('overallSatisfaction', {
label: 'How satisfied are you with your overall website experience?',
preset: 'satisfaction',
showSegmentColors: true,
alignment: 'center',
size: 'lg'
});
});
 
satisfactionSection.addRow(row => {
row.addEmojiRating('experienceEmotion', {
label: 'How did this experience make you feel?',
preset: 'satisfaction',
size: 'lg',
alignment: 'center',
showLabels: true
});
});
 
// ============================================
// SECTION 6: Suggestions
// ============================================
const suggestionsSection = form.addSubform('suggestionsSection', {
title: 'Your Suggestions',
isVisible: () => purposeSection.thumbRating('taskCompleted')?.value() !== null
});
 
suggestionsSection.addRow(row => {
row.addSuggestionChips('improvementAreas', {
label: 'Which areas need the most improvement? (Select up to 3)',
suggestions: [
{ id: 'search', name: 'Search function' },
{ id: 'navigation', name: 'Site navigation' },
{ id: 'mobile', name: 'Mobile experience' },
{ id: 'forms', name: 'Online forms' },
{ id: 'payments', name: 'Payment options' },
{ id: 'accessibility', name: 'Accessibility' },
{ id: 'content', name: 'Content organization' },
{ id: 'speed', name: 'Page speed' }
],
max: 3,
alignment: 'center'
});
});
 
suggestionsSection.addSpacer();
 
suggestionsSection.addRow(row => {
row.addTextarea('additionalFeedback', {
label: 'Any additional suggestions for improving our website?',
placeholder: 'Share your ideas for making our website better...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 7: Contact Information
// ============================================
const contactSection = form.addSubform('contactSection', {
title: 'Follow-up (Optional)',
isVisible: () => purposeSection.thumbRating('taskCompleted')?.value() !== null
});
 
contactSection.addRow(row => {
row.addCheckbox('wantsResponse', {
label: 'I would like someone to contact me about my feedback'
});
});
 
contactSection.addRow(row => {
row.addEmail('contactEmail', {
label: 'Email address',
placeholder: 'your@email.com',
isVisible: () => contactSection.checkbox('wantsResponse')?.value() === true,
isRequired: () => contactSection.checkbox('wantsResponse')?.value() === true
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Feedback Summary',
isVisible: () => {
const completed = purposeSection.thumbRating('taskCompleted')?.value();
const satisfaction = satisfactionSection.ratingScale('overallSatisfaction')?.value();
return completed !== null && satisfaction !== null && satisfaction !== undefined;
}
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const purpose = purposeSection.dropdown('visitPurpose')?.value();
const completed = purposeSection.thumbRating('taskCompleted')?.value();
const satisfaction = satisfactionSection.ratingScale('overallSatisfaction')?.value();
const emotion = satisfactionSection.emojiRating('experienceEmotion')?.value();
const improvements = suggestionsSection.suggestionChips('improvementAreas')?.value() || [];
 
if (!purpose) return '';
 
const purposeLabels: Record<string, string> = {
'pay-bill': 'Pay a bill or fee',
'permit': 'Apply for a permit',
'find-info': 'Find information',
'report-issue': 'Report an issue',
'meeting-agenda': 'View meetings',
'contact': 'Find contact info',
'recreation': 'Recreation programs',
'other': 'Other'
};
 
let summary = `Municipal Website Feedback\n`;
summary += `${'═'.repeat(30)}\n\n`;
summary += `Visit Purpose: ${purposeLabels[purpose] || purpose}\n`;
summary += `Task Completed: ${completed === 'up' ? 'Yes' : 'No'}\n`;
 
if (satisfaction !== null && satisfaction !== undefined) {
const satisfactionLabels = ['', 'Very Dissatisfied', 'Dissatisfied', 'Neutral', 'Satisfied', 'Very Satisfied'];
summary += `Satisfaction: ${satisfactionLabels[satisfaction]} (${satisfaction}/5)\n`;
}
 
if (emotion) {
const emotionLabels: Record<string, string> = {
'very-bad': 'Very Frustrated',
'bad': 'Frustrated',
'neutral': 'Neutral',
'good': 'Satisfied',
'excellent': 'Delighted'
};
summary += `Feeling: ${emotionLabels[emotion] || emotion}\n`;
}
 
if (improvements.length > 0) {
summary += `\nAreas for Improvement: ${improvements.length} selected`;
}
 
return summary;
},
customStyles: () => {
const satisfaction = satisfactionSection.ratingScale('overallSatisfaction')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (satisfaction !== null && satisfaction !== undefined) {
if (satisfaction >= 4) {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (satisfaction <= 2) {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
}
return { ...baseStyles, backgroundColor: '#f0f9ff', borderLeft: '4px solid #0ea5e9' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => purposeSection.thumbRating('taskCompleted')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your input helps us improve our digital services for all residents. We review all feedback and use it to prioritize website enhancements.'
});
}
 

Frequently Asked Questions

Why is website feedback important for municipalities?

Municipal websites are often the primary touchpoint for citizen services. Poor usability can reduce service adoption, increase call center volume, and decrease citizen satisfaction. Regular feedback helps identify pain points and prioritize improvements that matter most to residents.

How do I ensure accessibility compliance feedback?

This form includes specific questions about accessibility features (screen readers, keyboard navigation, text size). The feedback helps identify WCAG compliance gaps and ensures your website serves all citizens, including those with disabilities.

When should I display this feedback form?

Best practices include: after completing a service task (e.g., permit application), on exit intent, via a persistent feedback button, or after failed search attempts. Avoid interrupting critical transactions like payments.

Can I customize this for different departments?

Yes. The form includes a department selector that can be customized to match your organizational structure. You can also create department-specific versions with relevant service questions.

How do I analyze municipal website feedback?

Focus on common pain points, task completion rates, and accessibility issues. Prioritize fixes by impact (number of affected users) and effort. Share insights with web team, department heads, and accessibility coordinators.