Wedding Guest Feedback Form

Capture the magic of your wedding through guest feedback! This delightful form helps couples collect genuine reactions from their guests about every aspect of their special day. From venue ambiance to food quality, from entertainment to those unforgettable moments - understand what made your celebration truly special. Perfect for couples who want to relive their day through guests' eyes or vendors seeking testimonials.

Events & Conferences

Try the Form

We'd love to hear about your experience at our special day. Your feedback means the world to us!
The Big Picture
0/5
7/10
7 /10
110
💃 Sounds like you had a blast!
Rate the Details
⭐⭐ ⭐⭐⭐ ⭐⭐⭐⭐ ⭐⭐⭐⭐⭐
Venue & Atmosphere*
Ceremony*
Reception/Party
Decorations & Setup
Overall Organization
Food & Beverages
0/5
0/5
Entertainment & Music
7
7
110
Favorite Moments
Message for the Newlyweds
 
Your Celebration Summary
 
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
export function weddingFeedbackSurvey(form: FormTs) {
// Wedding Guest Feedback Form - Celebration Review
// Demonstrates: StarRating, EmojiRating, MatrixQuestion, Slider, SuggestionChips, ThumbRating, fun styling
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Thank You for Celebrating With Us!',
computedValue: () => "We'd love to hear about your experience at our special day. Your feedback means the world to us!",
customStyles: {
background: 'linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #818cf8 100%)',
color: 'white',
padding: '28px',
borderRadius: '16px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Overall Experience
// ============================================
const overallSection = form.addSubform('overallSection', {
title: 'The Big Picture',
customStyles: () => {
const rating = overallSection.starRating('overallRating')?.value();
if (rating && rating >= 4) return { backgroundColor: '#fdf2f8', padding: '16px', borderRadius: '12px' };
return { padding: '16px', borderRadius: '12px', border: '1px dashed #f9a8d4' };
}
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'Overall, how was the wedding celebration?',
maxStars: 5,
size: 'xl',
alignment: 'center',
filledColor: '#ec4899',
showConfettiOnMax: true
});
});
 
overallSection.addRow(row => {
row.addEmojiRating('celebrationMood', {
label: 'How did you feel during the celebration?',
preset: 'mood',
size: 'lg',
alignment: 'center',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
});
 
// Fun factor slider
overallSection.addRow(row => {
row.addSlider('funFactor', {
label: 'How much fun did you have?',
min: 1,
max: 10,
step: 1,
showValue: true,
unit: '/10',
defaultValue: 7,
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
});
 
overallSection.addRow(row => {
row.addTextPanel('funComment', {
computedValue: () => {
const fun = overallSection.slider('funFactor')?.value();
if (fun && fun >= 9) return '🎉 Party animal alert!';
if (fun && fun >= 7) return '💃 Sounds like you had a blast!';
if (fun && fun >= 5) return '🙂 We hope you enjoyed yourself!';
if (fun) return "🤔 We're sorry it wasn't more fun.";
return '';
},
customStyles: { fontStyle: 'italic', textAlign: 'center', padding: '8px', color: '#be185d' },
isVisible: () => overallSection.slider('funFactor')?.value() !== null
});
});
 
// ============================================
// SECTION 2: Event Aspects
// ============================================
const aspectsSection = form.addSubform('aspectsSection', {
title: 'Rate the Details',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
aspectsSection.addRow(row => {
row.addMatrixQuestion('eventRatings', {
label: 'How would you rate each aspect of the celebration?',
rows: [
{ id: 'venue', label: 'Venue & Atmosphere', isRequired: true },
{ id: 'ceremony', label: 'Ceremony', isRequired: true },
{ id: 'reception', label: 'Reception/Party', isRequired: false },
{ id: 'decorations', label: 'Decorations & Setup', isRequired: false },
{ id: 'organization', label: 'Overall Organization', isRequired: false }
],
columns: [
{ id: '1', label: '⭐' },
{ id: '2', label: '⭐⭐' },
{ id: '3', label: '⭐⭐⭐' },
{ id: '4', label: '⭐⭐⭐⭐' },
{ id: '5', label: '⭐⭐⭐⭐⭐' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 3: Food & Drinks
// ============================================
const foodSection = form.addSubform('foodSection', {
title: 'Food & Beverages',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
foodSection.addRow(row => {
row.addStarRating('foodRating', {
label: 'How was the food?',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#f59e0b'
});
});
 
foodSection.addRow(row => {
row.addStarRating('drinksRating', {
label: 'How were the drinks?',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#8b5cf6'
});
});
 
foodSection.addRow(row => {
row.addThumbRating('cakeThumb', {
label: 'Did you try the wedding cake?',
size: 'md',
showLabels: true,
upLabel: 'Yes, delicious!',
downLabel: "Didn't try it",
alignment: 'center'
});
});
 
// ============================================
// SECTION 4: Entertainment
// ============================================
const entertainmentSection = form.addSubform('entertainmentSection', {
title: 'Entertainment & Music',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
entertainmentSection.addRow(row => {
row.addSlider('musicRating', {
label: 'How was the music/DJ/band?',
min: 1,
max: 10,
step: 1,
showValue: true,
defaultValue: 7
});
});
 
entertainmentSection.addRow(row => {
row.addThumbRating('dancedQuestion', {
label: 'Did you hit the dance floor?',
size: 'md',
showLabels: true,
upLabel: 'Yes, danced the night away!',
downLabel: "Preferred to watch",
alignment: 'center'
});
});
 
// ============================================
// SECTION 5: Memorable Moments
// ============================================
const momentsSection = form.addSubform('momentsSection', {
title: 'Favorite Moments',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { backgroundColor: '#fdf4ff', padding: '16px', borderRadius: '12px' }
});
 
momentsSection.addRow(row => {
row.addSuggestionChips('bestMoments', {
label: 'What were your favorite parts? (select all that apply)',
suggestions: [
{ id: 'vows', name: 'The vows' },
{ id: 'first-dance', name: 'First dance' },
{ id: 'speeches', name: 'Speeches/toasts' },
{ id: 'cake-cutting', name: 'Cake cutting' },
{ id: 'bouquet-toss', name: 'Bouquet toss' },
{ id: 'dancing', name: 'Dancing' },
{ id: 'photo-booth', name: 'Photo booth' },
{ id: 'cocktail-hour', name: 'Cocktail hour' },
{ id: 'sunset', name: 'Sunset/venue views' },
{ id: 'exit', name: 'Grand exit' }
],
alignment: 'center'
});
});
 
momentsSection.addSpacer();
 
momentsSection.addRow(row => {
row.addTextarea('specialMoment', {
label: 'Tell us about your favorite moment:',
placeholder: 'What made it special for you?',
rows: 3
});
});
 
// ============================================
// SECTION 6: Message to the Couple
// ============================================
const messageSection = form.addSubform('messageSection', {
title: 'Message for the Newlyweds',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '12px' }
});
 
messageSection.addRow(row => {
row.addTextarea('coupleMessage', {
label: 'Leave a message for the happy couple:',
placeholder: 'Congratulations, advice, wishes, or just let them know how much fun you had!',
rows: 4
});
});
 
messageSection.addSpacer();
 
messageSection.addRow(row => {
row.addRadioButton('sharePermission', {
label: 'Can we share your feedback with our vendors?',
options: [
{ id: 'yes', name: 'Yes, share away!' },
{ id: 'anonymous', name: 'Yes, but anonymously' },
{ id: 'no', name: "No, keep it private" }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 7: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Your Celebration Summary',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const overall = overallSection.starRating('overallRating')?.value();
const mood = overallSection.emojiRating('celebrationMood')?.value();
const fun = overallSection.slider('funFactor')?.value();
const food = foodSection.starRating('foodRating')?.value();
const drinks = foodSection.starRating('drinksRating')?.value();
const music = entertainmentSection.slider('musicRating')?.value();
const danced = entertainmentSection.thumbRating('dancedQuestion')?.value();
const moments = momentsSection.suggestionChips('bestMoments')?.value() || [];
 
if (!overall) return '';
 
let summary = '💒 Wedding Celebration Summary\n';
summary += '━'.repeat(30) + '\n\n';
 
// Overall
summary += `💕 Overall: ${'❤️'.repeat(overall)} ${overall}/5\n`;
 
// Mood
if (mood) {
const moodLabels: Record<string, string> = {
'sad': '😢',
'down': '😔',
'neutral': '😐',
'happy': '😊',
'excited': '🤩'
};
summary += `Mood: ${moodLabels[mood] || mood}\n`;
}
 
// Fun factor
if (fun) {
summary += `🎉 Fun Factor: ${fun}/10\n`;
}
 
summary += '\n';
 
// Food & Drinks
if (food) summary += `🍽️ Food: ${'⭐'.repeat(food)}\n`;
if (drinks) summary += `🥂 Drinks: ${'⭐'.repeat(drinks)}\n`;
 
// Music & Dancing
if (music) summary += `🎵 Music: ${music}/10\n`;
if (danced === 'up') summary += '💃 Hit the dance floor!\n';
 
// Favorite moments
if (moments.length > 0) {
summary += `\n✨ Favorite moments: ${moments.length} selected`;
}
 
summary += '\n\n💝 Thank you for celebrating with us!';
 
return summary;
},
customStyles: () => {
const baseStyles = {
padding: '20px',
borderRadius: '12px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px',
background: 'linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%)',
borderLeft: '4px solid #ec4899'
};
return baseStyles;
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Send Celebration Feedback 🎉',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You So Much! 💕',
message: "Your feedback means the world to us! We're so grateful you were part of our special day. The memories we've made together will last a lifetime. Here's to love, laughter, and happily ever after!"
});
}
 

Frequently Asked Questions

When should I send this to guests?

Send 1-3 days after the wedding while memories are fresh. Include a thank you message and make it clear the feedback is optional and appreciated.

Can I share feedback with vendors?

Yes! Positive feedback makes great testimonials for vendors (with guest permission). Constructive feedback helps vendors improve their services.

Is this appropriate for all wedding types?

The form can be customized for any celebration - traditional weddings, destination weddings, elopements, or vow renewals. Adjust questions as needed.

How do I encourage guests to respond?

Keep it short and fun, emphasize how much their feedback means to you, and consider entering respondents in a thank-you giveaway.

What if I receive negative feedback?

Focus on the positive memories. Some things may not have gone perfectly, but the feedback can help other couples or vendors improve.