Homeowner Construction Feedback Form

This homeowner construction feedback form helps contractors and builders gather detailed client feedback after project completion. Collect ratings on workmanship quality, project management, communication, cleanliness, timeline adherence, and value for money. The form uses conditional sections to capture specific issues while celebrating excellent work with testimonial requests.

Specialized

Try the Form

Thank you for choosing us! Your feedback helps us deliver even better results for future homeowners.
Project Details
 
 
Workmanship Quality
0/5
Poor Fair Good Very Good Excellent
Attention to detail and craftsmanship*
Quality of materials used
Finish work and aesthetics
Code compliance and inspections
Final cleanup and presentation
Communication & Project Management
Poor Fair Good Very Good Excellent
Responsiveness to calls/messages*
Regular project updates
Clear explanation of process/costs
Addressed your concerns promptly
Professional and courteous manner
Strongly Disagree
Strongly Agree
Timeline & Budget
 
 
Crew & Site Management
0/5
0/5
 
 
Overall Satisfaction
Not at all likely
Extremely likely
 
Your Information
 
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
export function homeownerConstructionFeedback(form: FormTs) {
// Homeowner Construction Feedback Form
// Demonstrates: MatrixQuestion, StarRating, EmojiRating, ThumbRating, RatingScale, Slider, conditional visibility, dynamic styling
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Project Completion Feedback',
computedValue: () => 'Thank you for choosing us! Your feedback helps us deliver even better results for future homeowners.',
customStyles: {
background: 'linear-gradient(135deg, #ca8a04 0%, #eab308 100%)',
color: 'white',
padding: '28px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Project Information
// ============================================
const projectSection = form.addSubform('projectSection', {
title: 'Project Details',
customStyles: { backgroundColor: '#fefce8', padding: '16px', borderRadius: '8px' }
});
 
projectSection.addRow(row => {
row.addDropdown('projectType', {
label: 'Type of project',
options: [
{ id: 'new-build', name: 'New Home Construction' },
{ id: 'addition', name: 'Home Addition' },
{ id: 'kitchen', name: 'Kitchen Remodel' },
{ id: 'bathroom', name: 'Bathroom Remodel' },
{ id: 'basement', name: 'Basement Finishing' },
{ id: 'exterior', name: 'Exterior/Siding' },
{ id: 'roofing', name: 'Roofing' },
{ id: 'deck-patio', name: 'Deck/Patio' },
{ id: 'flooring', name: 'Flooring' },
{ id: 'painting', name: 'Painting' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select project type',
isRequired: true
}, '1fr');
row.addDropdown('projectSize', {
label: 'Project scope',
options: [
{ id: 'minor', name: 'Minor (Under $10,000)' },
{ id: 'medium', name: 'Medium ($10,000-$50,000)' },
{ id: 'major', name: 'Major ($50,000-$150,000)' },
{ id: 'large', name: 'Large ($150,000+)' }
],
placeholder: 'Select scope'
}, '1fr');
});
 
projectSection.addRow(row => {
row.addTextbox('projectAddress', {
label: 'Project address (City/State only for privacy)',
placeholder: 'e.g., Austin, TX'
}, '1fr');
row.addDatepicker('completionDate', {
label: 'Approximate completion date'
}, '1fr');
});
 
// ============================================
// SECTION 2: Workmanship Quality
// ============================================
const qualitySection = form.addSubform('qualitySection', {
title: 'Workmanship Quality'
});
 
qualitySection.addRow(row => {
row.addStarRating('overallQuality', {
label: 'Overall quality of workmanship',
maxStars: 5,
size: 'lg',
alignment: 'center',
showConfettiOnMax: true
});
});
 
qualitySection.addRow(row => {
row.addMatrixQuestion('qualityMatrix', {
label: 'Please rate specific aspects of the work:',
rows: [
{ id: 'craftsmanship', label: 'Attention to detail and craftsmanship', isRequired: true },
{ id: 'materials', label: 'Quality of materials used' },
{ id: 'finish', label: 'Finish work and aesthetics' },
{ id: 'code', label: 'Code compliance and inspections' },
{ id: 'cleanup', label: 'Final cleanup and presentation' }
],
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 3: Communication & Project Management
// ============================================
const communicationSection = form.addSubform('communicationSection', {
title: 'Communication & Project Management'
});
 
communicationSection.addRow(row => {
row.addMatrixQuestion('commMatrix', {
label: 'Rate our communication and management:',
rows: [
{ id: 'responsiveness', label: 'Responsiveness to calls/messages', isRequired: true },
{ id: 'updates', label: 'Regular project updates' },
{ id: 'clarity', label: 'Clear explanation of process/costs' },
{ id: 'concerns', label: 'Addressed your concerns promptly' },
{ id: 'professionalism', label: 'Professional and courteous manner' }
],
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
});
});
 
communicationSection.addRow(row => {
row.addRatingScale('easeOfWorking', {
preset: 'likert-5',
label: 'Overall, it was easy to work with our team',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
// ============================================
// SECTION 4: Timeline & Budget
// ============================================
const timelineBudgetSection = form.addSubform('timelineBudgetSection', {
title: 'Timeline & Budget'
});
 
timelineBudgetSection.addRow(row => {
row.addRadioButton('timelineAccuracy', {
label: 'How did the actual timeline compare to the estimate?',
options: [
{ id: 'early', name: 'Finished early' },
{ id: 'on-time', name: 'Finished on schedule' },
{ id: 'slight-delay', name: 'Slightly delayed (1-2 weeks)' },
{ id: 'delayed', name: 'Significantly delayed' }
],
orientation: 'vertical',
isRequired: true
}, '1fr');
row.addRadioButton('budgetAccuracy', {
label: 'How did the final cost compare to the estimate?',
options: [
{ id: 'under', name: 'Under budget' },
{ id: 'on-budget', name: 'On budget' },
{ id: 'slight-over', name: 'Slightly over (1-10%)' },
{ id: 'over', name: 'Significantly over budget' }
],
orientation: 'vertical',
isRequired: true
}, '1fr');
});
 
timelineBudgetSection.addRow(row => {
row.addTextarea('delayBudgetExplanation', {
label: 'Please explain any timeline or budget concerns',
placeholder: 'Were delays or cost increases communicated clearly? Were they justified?',
rows: 3,
autoExpand: true,
isVisible: () => {
const timeline = timelineBudgetSection.radioButton('timelineAccuracy')?.value();
const budget = timelineBudgetSection.radioButton('budgetAccuracy')?.value();
return timeline === 'delayed' || budget === 'over';
}
});
});
 
// ============================================
// SECTION 5: Crew & Site Management
// ============================================
const crewSection = form.addSubform('crewSection', {
title: 'Crew & Site Management'
});
 
crewSection.addRow(row => {
row.addStarRating('crewProfessionalism', {
label: 'Crew professionalism and courtesy',
maxStars: 5,
size: 'md',
alignment: 'center'
}, '1fr');
row.addStarRating('siteCleanliness', {
label: 'Job site cleanliness during work',
maxStars: 5,
size: 'md',
alignment: 'center'
}, '1fr');
});
 
crewSection.addRow(row => {
row.addCheckboxList('crewPositives', {
label: 'What did our crew do well?',
options: [
{ id: 'punctual', name: 'Arrived on time' },
{ id: 'respectful', name: 'Respectful of your home' },
{ id: 'clean', name: 'Kept site clean daily' },
{ id: 'communicative', name: 'Good communicators' },
{ id: 'skilled', name: 'Highly skilled workers' },
{ id: 'problem-solving', name: 'Good problem-solving' }
],
orientation: 'vertical'
}, '1fr');
row.addCheckboxList('crewImprovements', {
label: 'Areas for improvement?',
options: [
{ id: 'timeliness', name: 'Arrive on time' },
{ id: 'cleanliness', name: 'Better cleanup' },
{ id: 'communication', name: 'More communication' },
{ id: 'noise', name: 'Noise management' },
{ id: 'parking', name: 'Vehicle/parking courtesy' },
{ id: 'none', name: 'No improvements needed' }
],
orientation: 'vertical'
}, '1fr');
});
 
// ============================================
// SECTION 6: Overall Satisfaction
// ============================================
const satisfactionSection = form.addSubform('satisfactionSection', {
title: 'Overall Satisfaction',
customStyles: () => {
const nps = satisfactionSection.ratingScale('npsScore')?.npsCategory();
if (nps === 'promoter') return { backgroundColor: '#dcfce7', 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' };
}
});
 
satisfactionSection.addRow(row => {
row.addEmojiRating('overallExperience', {
label: 'How would you describe your overall experience?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
satisfactionSection.addSpacer({ height: '16px' });
 
satisfactionSection.addRow(row => {
row.addRatingScale('npsScore', {
preset: 'nps',
label: 'How likely are you to recommend us to friends and family?',
showCategoryLabel: true,
showSegmentColors: true,
showConfettiOnPromoter: true,
isRequired: true
});
});
 
satisfactionSection.addSpacer({ height: '16px' });
 
satisfactionSection.addRow(row => {
row.addThumbRating('hireAgain', {
label: 'Would you hire us again for future projects?',
showLabels: true,
upLabel: 'Definitely!',
downLabel: 'Probably not',
alignment: 'center',
size: 'lg'
});
});
 
// ============================================
// SECTION 7: Testimonial (Promoters)
// ============================================
const testimonialSection = form.addSubform('testimonialSection', {
title: 'Share Your Experience',
isVisible: () => {
const score = satisfactionSection.ratingScale('npsScore')?.value();
return score !== null && score !== undefined && score >= 8;
},
customStyles: { backgroundColor: '#dcfce7', padding: '16px', borderRadius: '8px' }
});
 
testimonialSection.addRow(row => {
row.addTextPanel('testimonialIntro', {
computedValue: () => "We're thrilled you had a great experience! Would you mind sharing a few words we could use as a testimonial?",
customStyles: {
backgroundColor: '#d1fae5',
padding: '12px',
borderRadius: '6px',
fontSize: '14px'
}
});
});
 
testimonialSection.addSpacer({ height: '12px' });
 
testimonialSection.addRow(row => {
row.addTextarea('testimonial', {
label: 'Your testimonial',
placeholder: 'What would you tell others about working with us?',
rows: 4,
autoExpand: true
});
});
 
testimonialSection.addRow(row => {
row.addCheckboxList('testimonialPermissions', {
label: 'May we use your feedback in:',
options: [
{ id: 'website', name: 'Our website' },
{ id: 'social', name: 'Social media' },
{ id: 'marketing', name: 'Marketing materials' },
{ id: 'google', name: 'Google reviews (we\'ll send a link)' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 8: Concerns (Detractors/Passives)
// ============================================
const concernsSection = form.addSubform('concernsSection', {
title: 'We Want to Make It Right',
isVisible: () => {
const score = satisfactionSection.ratingScale('npsScore')?.value();
return score !== null && score !== undefined && score <= 6;
},
customStyles: { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' }
});
 
concernsSection.addRow(row => {
row.addTextPanel('concernsIntro', {
computedValue: () => "We're sorry your experience didn't meet expectations. Please share your concerns so we can address them.",
customStyles: {
backgroundColor: '#fffbeb',
padding: '12px',
borderRadius: '6px',
fontSize: '14px',
borderLeft: '4px solid #f59e0b'
}
});
});
 
concernsSection.addSpacer({ height: '12px' });
 
concernsSection.addRow(row => {
row.addCheckboxList('concernAreas', {
label: 'What areas were disappointing?',
options: [
{ id: 'quality', name: 'Workmanship quality' },
{ id: 'communication', name: 'Communication' },
{ id: 'timeline', name: 'Timeline delays' },
{ id: 'budget', name: 'Budget overruns' },
{ id: 'cleanup', name: 'Site cleanliness' },
{ id: 'crew', name: 'Crew behavior' },
{ id: 'warranty', name: 'Warranty/follow-up' },
{ id: 'other', name: 'Other issues' }
],
orientation: 'vertical'
});
});
 
concernsSection.addRow(row => {
row.addTextarea('concernDetails', {
label: 'Please describe the issues in detail',
placeholder: 'The more detail you provide, the better we can address your concerns...',
rows: 4,
autoExpand: true,
isRequired: true
});
});
 
concernsSection.addRow(row => {
row.addCheckbox('requestCallback', {
label: 'I would like a manager to contact me about these concerns'
});
});
 
// ============================================
// SECTION 9: Contact Information
// ============================================
const contactSection = form.addSubform('contactSection', {
title: 'Your Information'
});
 
contactSection.addRow(row => {
row.addTextbox('homeownerName', {
label: 'Your name',
placeholder: 'First and last name',
isRequired: () => {
const perms = testimonialSection.checkboxList('testimonialPermissions')?.value() || [];
const callback = concernsSection.checkbox('requestCallback')?.value();
return perms.length > 0 || callback === true;
}
}, '1fr');
row.addEmail('homeownerEmail', {
label: 'Email',
placeholder: 'your@email.com',
isRequired: () => {
const callback = concernsSection.checkbox('requestCallback')?.value();
return callback === true;
}
}, '1fr');
});
 
contactSection.addRow(row => {
row.addTextbox('homeownerPhone', {
label: 'Phone (optional)',
placeholder: '(555) 123-4567',
isVisible: () => concernsSection.checkbox('requestCallback')?.value() === true
});
});
 
// ============================================
// SECTION 10: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Feedback Summary',
isVisible: () => satisfactionSection.ratingScale('npsScore')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const npsScore = satisfactionSection.ratingScale('npsScore')?.value();
const npsCategory = satisfactionSection.ratingScale('npsScore')?.npsCategory();
const overallQuality = qualitySection.starRating('overallQuality')?.value();
const crewRating = crewSection.starRating('crewProfessionalism')?.value();
const mood = satisfactionSection.emojiRating('overallExperience')?.value();
const hireAgain = satisfactionSection.thumbRating('hireAgain')?.value();
const timeline = timelineBudgetSection.radioButton('timelineAccuracy')?.value();
const budget = timelineBudgetSection.radioButton('budgetAccuracy')?.value();
 
if (npsScore === null || npsScore === undefined) return '';
 
let emoji = '';
if (npsCategory === 'promoter') emoji = '🏠';
else if (npsCategory === 'passive') emoji = '🔧';
else emoji = '⚠️';
 
let summary = `${emoji} Project Feedback Summary\n`;
summary += `${'═'.repeat(28)}\n\n`;
summary += `📊 NPS Score: ${npsScore}/10 (${npsCategory?.charAt(0).toUpperCase()}${npsCategory?.slice(1)})\n`;
 
if (overallQuality) {
summary += `⭐ Quality: ${overallQuality}/5 stars\n`;
}
 
if (crewRating) {
summary += `👷 Crew: ${crewRating}/5 stars\n`;
}
 
if (mood) {
const moodLabels: Record<string, string> = {
'very-bad': '😢 Poor experience',
'bad': '😕 Below expectations',
'neutral': '😐 Average',
'good': '😊 Good experience',
'excellent': '😍 Excellent!'
};
summary += `\n${moodLabels[mood] || mood}\n`;
}
 
if (timeline) {
const timelineLabels: Record<string, string> = {
'early': '⏰ Finished early',
'on-time': '⏰ On schedule',
'slight-delay': '⏰ Slight delay',
'delayed': '⏰ Significantly delayed'
};
summary += `${timelineLabels[timeline] || timeline}\n`;
}
 
if (budget) {
const budgetLabels: Record<string, string> = {
'under': '💰 Under budget',
'on-budget': '💰 On budget',
'slight-over': '💰 Slightly over',
'over': '💰 Over budget'
};
summary += `${budgetLabels[budget] || budget}\n`;
}
 
if (hireAgain) {
summary += `\n${hireAgain === 'up' ? '👍 Would hire again' : '👎 Would not hire again'}`;
}
 
return summary;
},
customStyles: () => {
const category = satisfactionSection.ratingScale('npsScore')?.npsCategory();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (category === 'promoter') {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (category === 'passive') {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else if (category === 'detractor') {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return baseStyles;
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => satisfactionSection.ratingScale('npsScore')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'We truly appreciate you taking the time to share your experience. Your feedback helps us improve and serve our clients better.'
});
}
 

Frequently Asked Questions

When should this form be sent to homeowners?

Send the form 1-2 weeks after project completion and final walkthrough. This gives homeowners time to use the finished work and notice any issues while the project is still fresh in their minds.

How can contractors use negative feedback constructively?

The form captures specific areas of concern with detailed comments. Use this feedback for team training, process improvement, and to follow up with unhappy clients. Addressing concerns can turn detractors into promoters.

Can I request testimonials through this form?

Yes! The form asks satisfied homeowners for permission to use their feedback as testimonials. You can capture both written comments and consent for various marketing uses.

What aspects of construction does this form cover?

The form evaluates workmanship quality, communication, timeline adherence, site cleanliness, crew professionalism, project management, budget accuracy, and overall satisfaction. Each area can be rated and commented on.

How does the budget rating work?

Homeowners rate how well the final cost matched the estimate. The form captures whether the project came in under, at, or over budget, and gathers details on any cost overruns.