Hotel Stay Feedback Form

This professional hotel feedback form helps hospitality businesses collect detailed guest reviews. The form covers all aspects of the stay experience including room cleanliness, bed comfort, staff service quality, amenities usage, and value for money. With conditional logic, guests who had issues see relevant follow-up questions, while satisfied guests can highlight what made their stay special. The built-in NPS question helps track guest loyalty over time. Designed for hotels, resorts, boutique accommodations, and vacation rentals.

Hospitality & TravelPopular

Try the Form

Help us make your next visit even better
Your Stay Details
 
 
Overall Experience
0/5
Rate Different Aspects
Poor Fair Good Very Good Excellent
Room Cleanliness*
Bed & Sleep Quality*
Bathroom Facilities
Noise Level
WiFi Quality
Air Conditioning/Heating
Staff & Service
0/5
0/5
0/5
0/5
Value & Amenities
5
5
110
Did You Experience Any Issues?
 
Would You Recommend Us?
Not at all likely
Extremely likely
Additional Comments
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
export function hotelStayFeedback(form: FormTs) {
// Hotel Stay Feedback - Comprehensive hospitality review form
// Demonstrates: MatrixQuestion, multiple StarRatings, Slider, conditional sections, EmojiRating
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Share Your Stay Experience',
computedValue: () => 'Help us make your next visit even better',
customStyles: {
backgroundColor: '#0ea5e9',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Stay Details
// ============================================
const stayDetails = form.addSubform('stayDetails', {
title: 'Your Stay Details',
customStyles: { backgroundColor: '#f0f9ff', padding: '16px', borderRadius: '8px' }
});
 
stayDetails.addRow(row => {
row.addDropdown('roomType', {
label: 'Room Type',
options: [
{ id: 'standard', name: 'Standard Room' },
{ id: 'deluxe', name: 'Deluxe Room' },
{ id: 'suite', name: 'Suite' },
{ id: 'penthouse', name: 'Penthouse' },
{ id: 'family', name: 'Family Room' }
],
placeholder: 'Select your room type'
}, '1fr');
row.addDropdown('stayPurpose', {
label: 'Purpose of Stay',
options: [
{ id: 'business', name: 'Business Trip' },
{ id: 'leisure', name: 'Leisure/Vacation' },
{ id: 'conference', name: 'Conference/Event' },
{ id: 'family', name: 'Family Visit' },
{ id: 'romantic', name: 'Romantic Getaway' }
],
placeholder: 'Select purpose'
}, '1fr');
});
 
stayDetails.addRow(row => {
row.addInteger('nightsStayed', {
label: 'Number of Nights',
min: 1,
max: 30,
placeholder: 'e.g., 3'
}, '1fr');
row.addDatepicker('checkInDate', {
label: 'Check-in Date',
maxDate: new Date().toISOString()
}, '1fr');
});
 
// ============================================
// SECTION 2: Overall Rating
// ============================================
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 describe your overall stay?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'Overall Hotel Rating',
maxStars: 5,
size: 'xl',
alignment: 'center',
showConfettiOnMax: true
});
});
 
// ============================================
// SECTION 3: Detailed Ratings (MatrixQuestion)
// ============================================
const detailedRatings = form.addSubform('detailedRatings', {
title: 'Rate Different Aspects',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#fafafa' }
});
 
detailedRatings.addRow(row => {
row.addMatrixQuestion('aspectRatings', {
label: 'Please rate the following aspects of your stay:',
rows: [
{ id: 'room_cleanliness', label: 'Room Cleanliness', isRequired: true },
{ id: 'bed_comfort', label: 'Bed & Sleep Quality', isRequired: true },
{ id: 'bathroom', label: 'Bathroom Facilities', isRequired: false },
{ id: 'noise_level', label: 'Noise Level', isRequired: false },
{ id: 'wifi', label: 'WiFi Quality', isRequired: false },
{ id: 'air_conditioning', label: 'Air Conditioning/Heating', 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: Staff & Service
// ============================================
const staffSection = form.addSubform('staffSection', {
title: 'Staff & Service',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
staffSection.addRow(row => {
row.addStarRating('frontDesk', {
label: 'Front Desk Service',
maxStars: 5,
size: 'md'
}, '1fr');
row.addStarRating('housekeeping', {
label: 'Housekeeping',
maxStars: 5,
size: 'md'
}, '1fr');
});
 
staffSection.addRow(row => {
row.addStarRating('concierge', {
label: 'Concierge/Help Desk',
maxStars: 5,
size: 'md'
}, '1fr');
row.addStarRating('restaurant', {
label: 'Restaurant Service',
maxStars: 5,
size: 'md',
tooltip: 'Rate if you used the hotel restaurant'
}, '1fr');
});
 
// ============================================
// SECTION 5: Value & Amenities
// ============================================
const valueSection = form.addSubform('valueSection', {
title: 'Value & Amenities',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#f0fdf4' }
});
 
valueSection.addRow(row => {
row.addSlider('valueForMoney', {
label: 'Value for Money',
min: 1,
max: 10,
step: 1,
showValue: true,
defaultValue: 5
});
});
 
valueSection.addRow(row => {
row.addSuggestionChips('usedAmenities', {
label: 'Which amenities did you use?',
suggestions: [
{ id: 'pool', name: 'Swimming Pool' },
{ id: 'gym', name: 'Fitness Center' },
{ id: 'spa', name: 'Spa & Wellness' },
{ id: 'breakfast', name: 'Breakfast Buffet' },
{ id: 'bar', name: 'Bar/Lounge' },
{ id: 'parking', name: 'Parking' },
{ id: 'roomservice', name: 'Room Service' },
{ id: 'laundry', name: 'Laundry Service' }
],
alignment: 'left'
});
});
 
// ============================================
// SECTION 6: Issues & Problems (Conditional)
// ============================================
const issuesSection = form.addSubform('issuesSection', {
title: 'Did You Experience Any Issues?',
isVisible: () => {
const rating = overallSection.starRating('overallRating')?.value();
return rating !== null && rating !== undefined && rating <= 3;
},
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#fef2f2', borderLeft: '4px solid #ef4444' }
});
 
issuesSection.addRow(row => {
row.addCheckboxList('issueTypes', {
label: 'What issues did you encounter?',
options: [
{ id: 'cleanliness', name: 'Cleanliness problems' },
{ id: 'noise', name: 'Noise disturbances' },
{ id: 'maintenance', name: 'Maintenance issues' },
{ id: 'staff', name: 'Staff behavior' },
{ id: 'billing', name: 'Billing errors' },
{ id: 'amenities', name: 'Amenities not working' },
{ id: 'booking', name: 'Reservation problems' }
],
orientation: 'vertical'
});
});
 
issuesSection.addRow(row => {
row.addTextarea('issueDetails', {
label: 'Please describe the issue(s)',
placeholder: 'Tell us what went wrong so we can improve...',
rows: 3,
autoExpand: true,
isVisible: () => {
const issues = issuesSection.checkboxList('issueTypes')?.value() || [];
return issues.length > 0;
}
});
});
 
issuesSection.addRow(row => {
row.addThumbRating('issueResolved', {
label: 'Was your issue resolved during your stay?',
showLabels: true,
upLabel: 'Yes, resolved',
downLabel: 'No, not resolved',
alignment: 'left',
isVisible: () => {
const issues = issuesSection.checkboxList('issueTypes')?.value() || [];
return issues.length > 0;
}
});
});
 
// ============================================
// SECTION 7: Positive Highlights (Conditional)
// ============================================
const highlightsSection = form.addSubform('highlightsSection', {
title: 'What Made Your Stay Special?',
isVisible: () => {
const rating = overallSection.starRating('overallRating')?.value();
return rating !== null && rating !== undefined && rating >= 4;
},
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#ecfdf5', borderLeft: '4px solid #10b981' }
});
 
highlightsSection.addRow(row => {
row.addSuggestionChips('highlights', {
label: 'Select what you loved most (up to 4)',
suggestions: [
{ id: 'location', name: 'Great Location' },
{ id: 'view', name: 'Amazing View' },
{ id: 'staff', name: 'Friendly Staff' },
{ id: 'food', name: 'Delicious Food' },
{ id: 'room', name: 'Beautiful Room' },
{ id: 'cleanliness', name: 'Spotless Clean' },
{ id: 'amenities', name: 'Great Amenities' },
{ id: 'value', name: 'Great Value' }
],
max: 4,
alignment: 'center'
});
});
 
// ============================================
// SECTION 8: Recommendation
// ============================================
const recommendSection = form.addSubform('recommendSection', {
title: 'Would You Recommend Us?',
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 hotel to friends or colleagues?',
showCategoryLabel: true,
showSegmentColors: true,
showConfettiOnPromoter: true
});
});
 
recommendSection.addRow(row => {
row.addCheckbox('returnIntent', {
label: 'I would stay at this hotel again'
});
});
 
// ============================================
// SECTION 9: Additional Comments
// ============================================
const commentsSection = form.addSubform('commentsSection', {
title: 'Additional Comments',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
commentsSection.addRow(row => {
row.addTextarea('additionalComments', {
label: 'Any other feedback you would like to share?',
placeholder: 'We value all your thoughts and suggestions...',
rows: 4,
autoExpand: true
});
});
 
commentsSection.addRow(row => {
row.addCheckbox('allowContact', {
label: 'You may contact me regarding my feedback'
});
});
 
commentsSection.addRow(row => {
row.addEmail('contactEmail', {
label: 'Email Address',
placeholder: 'your@email.com',
isVisible: () => commentsSection.checkbox('allowContact')?.value() === true,
isRequired: () => commentsSection.checkbox('allowContact')?.value() === true
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Review',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Review!',
message: 'Your feedback is invaluable and helps us improve our service. We hope to welcome you back soon!'
});
}
 

Frequently Asked Questions

When should I send the hotel feedback form to guests?

Best practice is to send the survey within 24-48 hours after checkout while the experience is still fresh. You can also offer a QR code at the front desk during checkout, or include a link in the checkout confirmation email.

What is a good response rate for hotel surveys?

Industry average for hotel feedback surveys is 5-15%. To improve response rates, keep the survey under 3 minutes, offer incentives like loyalty points or discounts, and personalize the invitation with the guest's name and stay dates.

How do I handle negative feedback from guests?

Respond promptly and personally to negative feedback. Acknowledge the issue, apologize sincerely, explain any corrective actions, and offer compensation if appropriate. Many guests who have issues resolved become loyal advocates.

Can I customize the rating categories?

Yes, you can fully customize all aspects of this form. Add or remove rating categories, change the scale (stars, numbers, emojis), add property-specific questions about your spa, restaurant, or other amenities.

How does the conditional logic work?

The form automatically shows relevant questions based on the guest's overall rating. Guests who rate 3 stars or below see issue-reporting sections, while guests rating 4+ stars see sections to highlight what they loved. This keeps the survey relevant and respectful of guest time.

Should I use NPS or Star Rating for hotels?

Both are valuable. Star ratings are intuitive for guests and easy to display publicly. NPS (Net Promoter Score) measures loyalty and likelihood to recommend, which is a strong predictor of repeat bookings and referrals. This template includes both.