Spa & Wellness Review Form

The spa experience is all about relaxation and rejuvenation. This elegant feedback form captures every aspect of the wellness journey - from booking and arrival to treatment quality and post-visit feeling. With specialized questions for different treatment types and a calming visual design, it helps spas understand what creates the perfect experience and where improvements are needed.

Hospitality & Travel

Try the Form

Your feedback helps us create the perfect escape
Your Visit
 
 
Overall Experience
0/5
Ambiance & Facilities
0/5
0/5
0/5
0/5
3
15
Temperature: Perfect
Service & Staff
Poor Fair Good Very Good Excellent
Booking process*
Check-in experience
Staff friendliness
Attentiveness to needs
Check-out and payment
 
Value & Recommendation
Strongly Disagree
Strongly Agree
Not at all likely
Extremely likely
Help Us Improve
Future Visits
 
Feedback Summary
โœจ Spa Visit Summary โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ• Overall: โ˜†โ˜†โ˜†โ˜†โ˜† Relaxation: Not rated Services: 0 received Return Visit: Not answered
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
export function spaWellnessFeedback(form: FormTs) {
// Spa & Wellness Feedback - Elegant review form for spas and wellness centers
// Demonstrates: StarRating, EmojiRating, MatrixQuestion, Slider, Datepicker, RatingScale, conditional visibility
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'โœจ How Was Your Experience?',
computedValue: () => 'Your feedback helps us create the perfect escape',
customStyles: {
background: 'linear-gradient(135deg, #a855f7 0%, #ec4899 100%)',
color: 'white',
padding: '24px',
borderRadius: '16px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Visit Details
// ============================================
const visitSection = form.addSubform('visitSection', {
title: 'Your Visit',
customStyles: {
backgroundColor: '#fdf4ff',
padding: '16px',
borderRadius: '12px'
}
});
 
visitSection.addRow(row => {
row.addDatepicker('visitDate', {
label: 'Date of visit',
maxDate: () => new Date().toISOString()
}, '1fr');
 
row.addDropdown('visitType', {
label: 'Visit type',
options: [
{ id: 'first', name: 'First visit' },
{ id: 'returning', name: 'Returning guest' },
{ id: 'regular', name: 'Regular member' },
{ id: 'package', name: 'Package/Membership holder' }
],
isRequired: true
}, '1fr');
});
 
visitSection.addRow(row => {
row.addCheckboxList('services', {
label: 'Services received (select all that apply)',
options: [
{ id: 'massage', name: 'Massage therapy' },
{ id: 'facial', name: 'Facial treatment' },
{ id: 'body-treatment', name: 'Body treatment/wrap' },
{ id: 'manicure', name: 'Manicure' },
{ id: 'pedicure', name: 'Pedicure' },
{ id: 'hair', name: 'Hair services' },
{ id: 'sauna', name: 'Sauna/Steam room' },
{ id: 'pool', name: 'Pool/Hydrotherapy' },
{ id: 'meditation', name: 'Meditation/Yoga class' },
{ id: 'other', name: 'Other service' }
],
orientation: 'vertical',
isRequired: true
});
});
 
// ============================================
// SECTION 2: Overall Experience
// ============================================
const experienceSection = form.addSubform('experienceSection', {
title: 'Overall Experience',
customStyles: { padding: '16px', borderRadius: '12px', border: '1px solid #f0abfc' }
});
 
experienceSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'How would you rate your overall experience?',
maxStars: 5,
size: 'xl',
alignment: 'center',
filledColor: '#a855f7',
showConfettiOnMax: true
});
});
 
experienceSection.addRow(row => {
row.addEmojiRating('relaxationLevel', {
label: 'How relaxed do you feel after your visit?',
preset: 'mood',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
// ============================================
// SECTION 3: Treatment Quality (MatrixQuestion)
// ============================================
const treatmentSection = form.addSubform('treatmentSection', {
title: 'Treatment Quality',
isVisible: () => (visitSection.checkboxList('services')?.value()?.length ?? 0) > 0,
customStyles: { backgroundColor: '#fdf4ff', padding: '16px', borderRadius: '12px' }
});
 
treatmentSection.addRow(row => {
row.addMatrixQuestion('treatmentRatings', {
label: 'Please rate the following aspects:',
rows: [
{ id: 'skill', label: 'Therapist/practitioner skill', isRequired: true },
{ id: 'pressure', label: 'Pressure/technique (if applicable)' },
{ id: 'products', label: 'Quality of products used' },
{ id: 'timing', label: 'Treatment duration/pacing' },
{ id: 'customization', label: 'Personalization to your needs' }
],
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: Ambiance & Facilities
// ============================================
const ambianceSection = form.addSubform('ambianceSection', {
title: 'Ambiance & Facilities',
customStyles: { padding: '16px', borderRadius: '12px', border: '1px solid #f0abfc' }
});
 
ambianceSection.addRow(row => {
row.addStarRating('cleanlinessRating', {
label: 'Cleanliness & hygiene',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#a855f7'
}, '1fr');
 
row.addStarRating('ambianceRating', {
label: 'Atmosphere & ambiance',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#a855f7'
}, '1fr');
});
 
ambianceSection.addRow(row => {
row.addStarRating('musicRating', {
label: 'Music & sound',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#a855f7'
}, '1fr');
 
row.addStarRating('scentRating', {
label: 'Aromatherapy & scents',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#a855f7'
}, '1fr');
});
 
ambianceSection.addRow(row => {
row.addSlider('temperatureComfort', {
label: 'Temperature comfort (was it too cold or too warm?)',
min: 1,
max: 5,
step: 1,
defaultValue: 3,
showValue: false
});
});
 
ambianceSection.addRow(row => {
row.addTextPanel('temperatureLabels', {
computedValue: () => {
const temp = ambianceSection.slider('temperatureComfort')?.value() ?? 3;
const labels = ['Too Cold', 'Slightly Cold', 'Perfect', 'Slightly Warm', 'Too Warm'];
return `Temperature: ${labels[temp - 1]}`;
},
customStyles: {
textAlign: 'center',
fontSize: '14px',
color: '#6b21a8'
}
});
});
 
// ============================================
// SECTION 5: Service & Staff
// ============================================
const serviceSection = form.addSubform('serviceSection', {
title: 'Service & Staff',
customStyles: { backgroundColor: '#fdf4ff', padding: '16px', borderRadius: '12px' }
});
 
serviceSection.addRow(row => {
row.addMatrixQuestion('serviceRatings', {
label: 'How would you rate our service?',
rows: [
{ id: 'booking', label: 'Booking process', isRequired: true },
{ id: 'checkin', label: 'Check-in experience' },
{ id: 'staff-friendliness', label: 'Staff friendliness' },
{ id: 'attentiveness', label: 'Attentiveness to needs' },
{ id: 'checkout', label: 'Check-out and payment' }
],
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
});
});
 
serviceSection.addRow(row => {
row.addTextbox('therapistName', {
label: 'Your therapist/practitioner name (optional)',
placeholder: 'If you remember their name...'
});
});
 
serviceSection.addRow(row => {
row.addTextarea('therapistFeedback', {
label: 'Any specific feedback for your therapist?',
placeholder: 'Compliments or suggestions...',
rows: 2,
autoExpand: true,
isVisible: () => (serviceSection.textbox('therapistName')?.value()?.length ?? 0) > 0
});
});
 
// ============================================
// SECTION 6: Value & Recommendation
// ============================================
const valueSection = form.addSubform('valueSection', {
title: 'Value & Recommendation',
customStyles: { padding: '16px', borderRadius: '12px', border: '1px solid #f0abfc' }
});
 
valueSection.addRow(row => {
row.addRatingScale('valueForMoney', {
preset: 'likert-5',
label: 'The experience was good value for money',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
valueSection.addRow(row => {
row.addRatingScale('npsScore', {
preset: 'nps',
label: 'How likely are you to recommend us to friends or family?',
showCategoryLabel: true,
showSegmentColors: true,
showConfettiOnPromoter: true
});
});
 
// ============================================
// SECTION 7: Follow-up for Low Ratings
// ============================================
const concernsSection = form.addSubform('concernsSection', {
title: 'Help Us Improve',
isVisible: () => {
const overall = experienceSection.starRating('overallRating')?.value() ?? 0;
const nps = valueSection.ratingScale('npsScore')?.value() ?? 10;
return overall <= 3 || nps <= 6;
},
customStyles: { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '12px' }
});
 
concernsSection.addRow(row => {
row.addSuggestionChips('issueAreas', {
label: 'What areas need improvement?',
suggestions: [
{ id: 'wait-time', name: 'Wait time' },
{ id: 'cleanliness', name: 'Cleanliness' },
{ id: 'treatment', name: 'Treatment quality' },
{ id: 'staff', name: 'Staff attitude' },
{ id: 'noise', name: 'Noise/Disturbances' },
{ id: 'value', name: 'Value for money' },
{ id: 'amenities', name: 'Amenities' },
{ id: 'communication', name: 'Communication' }
],
alignment: 'center'
});
});
 
concernsSection.addSpacer();
 
concernsSection.addRow(row => {
row.addTextarea('improvementSuggestions', {
label: 'Please share more details about your concerns',
placeholder: 'Your feedback helps us create a better experience...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Positive Highlights (for high ratings)
// ============================================
const highlightsSection = form.addSubform('highlightsSection', {
title: 'What Made Your Visit Special?',
isVisible: () => {
const overall = experienceSection.starRating('overallRating')?.value() ?? 0;
return overall >= 4;
},
customStyles: { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '12px' }
});
 
highlightsSection.addRow(row => {
row.addSuggestionChips('bestParts', {
label: 'What stood out most?',
suggestions: [
{ id: 'relaxation', name: '๐Ÿง˜ Deep relaxation' },
{ id: 'therapist', name: '๐Ÿ‘ Skilled therapist' },
{ id: 'ambiance', name: 'โœจ Beautiful ambiance' },
{ id: 'products', name: '๐ŸŒฟ Quality products' },
{ id: 'service', name: '๐Ÿ’ Excellent service' },
{ id: 'cleanliness', name: '๐Ÿงน Spotless facilities' }
],
max: 3,
alignment: 'center'
});
});
 
highlightsSection.addSpacer();
 
highlightsSection.addRow(row => {
row.addTextarea('testimonial', {
label: 'Would you like to leave a testimonial? (may be used in marketing)',
placeholder: 'Share your experience in a few words...',
rows: 2,
autoExpand: true
});
});
 
// ============================================
// SECTION 9: Future Visits
// ============================================
const futureSection = form.addSubform('futureSection', {
title: 'Future Visits'
});
 
futureSection.addRow(row => {
row.addThumbRating('willReturn', {
label: 'Will you visit us again?',
showLabels: true,
upLabel: 'Definitely!',
downLabel: 'Unlikely',
alignment: 'center',
size: 'lg'
});
});
 
futureSection.addRow(row => {
row.addCheckboxList('interestedServices', {
label: 'Interested in trying next time?',
options: [
{ id: 'couples', name: 'Couples massage' },
{ id: 'hot-stone', name: 'Hot stone therapy' },
{ id: 'aromatherapy', name: 'Aromatherapy' },
{ id: 'facial', name: 'Signature facial' },
{ id: 'package', name: 'Day spa package' },
{ id: 'membership', name: 'Membership options' }
],
orientation: 'horizontal'
});
});
 
futureSection.addRow(row => {
row.addCheckbox('receiveOffers', {
label: 'Send me special offers and wellness tips'
});
});
 
futureSection.addRow(row => {
row.addEmail('email', {
label: 'Email address',
placeholder: 'your@email.com',
isVisible: () => futureSection.checkbox('receiveOffers')?.value() === true,
isRequired: () => futureSection.checkbox('receiveOffers')?.value() === true
});
});
 
// ============================================
// SUMMARY
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Feedback Summary',
isVisible: () => experienceSection.starRating('overallRating')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const overall = experienceSection.starRating('overallRating')?.value() ?? 0;
const relaxation = experienceSection.emojiRating('relaxationLevel')?.value();
const services = visitSection.checkboxList('services')?.value() || [];
const nps = valueSection.ratingScale('npsScore')?.value();
const npsCategory = valueSection.ratingScale('npsScore')?.npsCategory();
const willReturn = futureSection.thumbRating('willReturn')?.value();
 
const relaxLabels: Record<string, string> = {
'very-bad': '๐Ÿ˜ฐ Stressed',
'bad': '๐Ÿ˜• Tense',
'neutral': '๐Ÿ˜ Okay',
'good': '๐Ÿ˜Œ Relaxed',
'excellent': '๐Ÿง˜ Deeply Relaxed'
};
 
let summary = 'โœจ Spa Visit Summary\n';
summary += 'โ•'.repeat(22) + '\n\n';
summary += `Overall: ${'โ˜…'.repeat(overall)}${'โ˜†'.repeat(5 - overall)}\n`;
summary += `Relaxation: ${relaxLabels[relaxation || ''] || 'Not rated'}\n`;
summary += `Services: ${services.length} received\n`;
 
if (nps !== null && nps !== undefined) {
summary += `\nNPS: ${nps}/10 (${npsCategory})\n`;
}
 
summary += `Return Visit: ${willReturn === 'up' ? 'Yes' : willReturn === 'down' ? 'Unlikely' : 'Not answered'}`;
 
return summary;
},
customStyles: {
padding: '16px',
borderRadius: '12px',
backgroundColor: '#fdf4ff',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '13px',
borderLeft: '4px solid #a855f7'
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => experienceSection.starRating('overallRating')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'We appreciate you taking the time to share your experience. Your feedback helps us create the perfect sanctuary for relaxation and wellness.'
});
}
 

Frequently Asked Questions

When should I send the spa feedback survey?

Send 2-24 hours after the appointment. Too soon interrupts the relaxation; too late and details are forgotten. Email or SMS both work well. Some spas ask for quick feedback at checkout for immediate concerns.

What makes a great spa feedback form?

Keep it elegant and calming like your spa. Focus on the full journey: booking ease, arrival, treatment quality, therapist skill, ambiance, and departure. Include specific service questions while maintaining relaxing aesthetics.

How do I handle negative spa feedback?

Respond personally and quickly. Offer to make it right - complimentary treatment, refund, or personal follow-up. Spa-goers expect high service standards; addressing issues promptly often converts unhappy guests into loyal advocates.

Should I ask about specific therapists?

Yes, but carefully. Make therapist identification optional to avoid guests feeling they're 'rating' an individual unfairly. Use feedback for coaching and recognition, not punishment. Celebrate positive feedback publicly.

What questions matter most for spa feedback?

Cleanliness/hygiene always ranks highest - it's non-negotiable in wellness. Treatment effectiveness, therapist skill, ambiance, and value for money follow. Always ask about the emotional outcome - did they feel relaxed/rejuvenated?

How can I increase spa feedback response rates?

Keep it short (3-5 minutes max). Use elegant design matching your brand. Consider a small incentive like 10% off next visit. Make it easy with one-click links. Send at the right time when the experience is fresh.