Peer Recognition Form

Peer recognition is one of the most powerful drivers of employee engagement and retention. This form allows team members to nominate colleagues who exemplify company values, go above and beyond, or simply deserve appreciation. Recognition can be tied to specific values, achievements, or everyday helpfulness. The form supports both public shout-outs and private appreciation, making it flexible for different workplace cultures.

Employee Experience

Try the Form

Celebrate someone who made a difference. Your recognition means more than you know!
Who Deserves Recognition?
 
What Are You Recognizing?
 
Values Demonstrated
Rate the Impact
0/5
Tell the Story
 
Visibility Settings
 
About You
 
 
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
export function peerRecognitionForm(form: FormTs) {
// Peer Recognition Form - Employee Appreciation
// Demonstrates: StarRating, SuggestionChips, RadioButton, Textarea, Dropdown, MatrixQuestion, Checkbox
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Recognize a Colleague',
computedValue: () => 'Celebrate someone who made a difference. Your recognition means more than you know!',
customStyles: {
backgroundColor: '#f97316',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Who Are You Recognizing?
// ============================================
const recipientSection = form.addSubform('recipient', {
title: 'Who Deserves Recognition?'
});
 
recipientSection.addRow(row => {
row.addTextbox('nomineeName', {
label: 'Colleague\'s Name',
placeholder: 'Enter their full name',
isRequired: true
}, '1fr');
row.addDropdown('department', {
label: 'Their Department',
options: [
{ id: 'engineering', name: 'Engineering' },
{ id: 'product', name: 'Product' },
{ id: 'design', name: 'Design' },
{ id: 'marketing', name: 'Marketing' },
{ id: 'sales', name: 'Sales' },
{ id: 'customer_success', name: 'Customer Success' },
{ id: 'hr', name: 'People & HR' },
{ id: 'finance', name: 'Finance' },
{ id: 'operations', name: 'Operations' },
{ id: 'leadership', name: 'Leadership' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select department',
isRequired: true
}, '1fr');
});
 
// ============================================
// SECTION 2: Type of Recognition
// ============================================
const typeSection = form.addSubform('type', {
title: 'What Are You Recognizing?'
});
 
typeSection.addRow(row => {
row.addRadioButton('recognitionType', {
label: 'Recognition Category',
options: [
{ id: 'above_beyond', name: 'Going Above & Beyond' },
{ id: 'teamwork', name: 'Outstanding Teamwork' },
{ id: 'innovation', name: 'Innovation & Creativity' },
{ id: 'customer_focus', name: 'Customer Focus' },
{ id: 'mentorship', name: 'Mentorship & Support' },
{ id: 'milestone', name: 'Achievement/Milestone' },
{ id: 'everyday', name: 'Everyday Helpfulness' },
{ id: 'other', name: 'Other' }
],
orientation: 'vertical',
isRequired: true
});
});
 
// ============================================
// SECTION 3: Company Values Alignment
// ============================================
const valuesSection = form.addSubform('values', {
title: 'Values Demonstrated',
customStyles: { backgroundColor: '#fff7ed', padding: '16px', borderRadius: '8px' }
});
 
valuesSection.addRow(row => {
row.addSuggestionChips('valuesChips', {
label: 'Which company values did they exemplify? (select all that apply)',
suggestions: [
{ id: 'integrity', name: 'Integrity' },
{ id: 'collaboration', name: 'Collaboration' },
{ id: 'excellence', name: 'Excellence' },
{ id: 'innovation', name: 'Innovation' },
{ id: 'customer_first', name: 'Customer First' },
{ id: 'ownership', name: 'Ownership' },
{ id: 'respect', name: 'Respect' },
{ id: 'transparency', name: 'Transparency' }
],
alignment: 'center',
min: 1
});
});
 
// ============================================
// SECTION 4: Impact Rating
// ============================================
const impactSection = form.addSubform('impact', {
title: 'Rate the Impact'
});
 
impactSection.addRow(row => {
row.addStarRating('impactRating', {
label: 'How significant was their contribution?',
maxStars: 5,
size: 'lg',
showCounter: true,
alignment: 'center',
showConfettiOnMax: true
});
});
 
// Show matrix for high impact (4-5 stars)
impactSection.addSpacer({ height: '16px', isVisible: () => {
const rating = impactSection.starRating('impactRating')?.value();
return rating !== null && rating !== undefined && rating >= 4;
}});
 
impactSection.addRow(row => {
row.addMatrixQuestion('impactAreas', {
label: 'Rate their impact in specific areas:',
rows: [
{ id: 'quality', label: 'Quality of work' },
{ id: 'timeliness', label: 'Timeliness' },
{ id: 'collaboration', label: 'Team collaboration' },
{ id: 'attitude', label: 'Positive attitude' }
],
columns: [
{ id: 'good', label: 'Good' },
{ id: 'great', label: 'Great' },
{ id: 'exceptional', label: 'Exceptional' }
],
striped: true,
isVisible: () => {
const rating = impactSection.starRating('impactRating')?.value();
return rating !== null && rating !== undefined && rating >= 4;
}
});
});
 
// ============================================
// SECTION 5: The Story
// ============================================
const storySection = form.addSubform('story', {
title: 'Tell the Story'
});
 
storySection.addRow(row => {
row.addTextarea('whatHappened', {
label: 'What did they do that deserves recognition?',
placeholder: 'Describe the situation, their actions, and the impact...\n\nExample: "During last week\'s product launch, Sarah stayed late to help the engineering team debug a critical issue. Her positive attitude kept everyone motivated, and her solution-oriented approach helped us ship on time."',
rows: 5,
autoExpand: true,
isRequired: true
});
});
 
storySection.addSpacer({ height: '12px' });
 
storySection.addRow(row => {
row.addTextarea('whyMatters', {
label: 'Why does this recognition matter to you personally? (optional)',
placeholder: 'Share how their actions affected you or the team...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 6: Visibility & Sharing
// ============================================
const visibilitySection = form.addSubform('visibility', {
title: 'Visibility Settings'
});
 
visibilitySection.addRow(row => {
row.addRadioButton('visibility', {
label: 'How would you like to share this recognition?',
options: [
{ id: 'public', name: 'Public - Share in company channel for everyone to see' },
{ id: 'team', name: 'Team Only - Share with their team and manager' },
{ id: 'private', name: 'Private - Only they and HR will see this' }
],
orientation: 'vertical',
defaultValue: 'public'
});
});
 
visibilitySection.addRow(row => {
row.addCheckbox('notifyManager', {
label: 'Also notify their manager about this recognition',
defaultValue: true
});
});
 
visibilitySection.addRow(row => {
row.addCheckbox('nominateAward', {
label: 'Nominate for monthly Employee Recognition Award',
isVisible: () => {
const rating = impactSection.starRating('impactRating')?.value();
return rating !== null && rating !== undefined && rating >= 4;
}
});
});
 
// ============================================
// SECTION 7: About You
// ============================================
const nominatorSection = form.addSubform('nominator', {
title: 'About You'
});
 
nominatorSection.addRow(row => {
row.addTextbox('yourName', {
label: 'Your Name',
placeholder: 'Enter your name',
isRequired: true
}, '1fr');
row.addDropdown('yourDepartment', {
label: 'Your Department',
options: [
{ id: 'engineering', name: 'Engineering' },
{ id: 'product', name: 'Product' },
{ id: 'design', name: 'Design' },
{ id: 'marketing', name: 'Marketing' },
{ id: 'sales', name: 'Sales' },
{ id: 'customer_success', name: 'Customer Success' },
{ id: 'hr', name: 'People & HR' },
{ id: 'finance', name: 'Finance' },
{ id: 'operations', name: 'Operations' },
{ id: 'leadership', name: 'Leadership' },
{ id: 'other', name: 'Other' }
],
placeholder: 'Select department'
}, '1fr');
});
 
nominatorSection.addRow(row => {
row.addRadioButton('relationship', {
label: 'Your relationship to the nominee',
options: [
{ id: 'peer', name: 'Peer/Colleague' },
{ id: 'manager', name: 'Their Manager' },
{ id: 'direct_report', name: 'Their Direct Report' },
{ id: 'cross_team', name: 'Cross-functional Partner' },
{ id: 'other', name: 'Other' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Recognition Preview',
isVisible: () => {
const name = recipientSection.textbox('nomineeName')?.value();
const rating = impactSection.starRating('impactRating')?.value();
return !!name && rating !== null && rating !== undefined;
}
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const nomineeName = recipientSection.textbox('nomineeName')?.value();
const department = recipientSection.dropdown('department')?.value();
const recognitionType = typeSection.radioButton('recognitionType')?.value();
const values = valuesSection.suggestionChips('valuesChips')?.value() || [];
const rating = impactSection.starRating('impactRating')?.value();
const visibility = visibilitySection.radioButton('visibility')?.value();
const nominatorName = nominatorSection.textbox('yourName')?.value();
 
if (!nomineeName) return '';
 
const typeLabels: Record<string, string> = {
'above_beyond': 'Going Above & Beyond',
'teamwork': 'Outstanding Teamwork',
'innovation': 'Innovation & Creativity',
'customer_focus': 'Customer Focus',
'mentorship': 'Mentorship & Support',
'milestone': 'Achievement/Milestone',
'everyday': 'Everyday Helpfulness',
'other': 'Other'
};
 
const deptLabels: Record<string, string> = {
'engineering': 'Engineering', 'product': 'Product', 'design': 'Design',
'marketing': 'Marketing', 'sales': 'Sales', 'customer_success': 'Customer Success',
'hr': 'People & HR', 'finance': 'Finance', 'operations': 'Operations',
'leadership': 'Leadership', 'other': 'Other'
};
 
const stars = rating ? '⭐'.repeat(rating) : '';
 
let summary = `🏆 Recognition for ${nomineeName}\n`;
summary += `${'═'.repeat(30)}\n\n`;
 
if (department) {
summary += `📍 Department: ${deptLabels[department] || department}\n`;
}
 
if (recognitionType) {
summary += `🎯 Category: ${typeLabels[recognitionType] || recognitionType}\n`;
}
 
if (rating) {
summary += `⭐ Impact: ${stars} (${rating}/5)\n`;
}
 
if (values.length > 0) {
summary += `💎 Values: ${values.length} demonstrated\n`;
}
 
if (visibility) {
const visLabels: Record<string, string> = {
'public': '🌐 Public',
'team': '👥 Team Only',
'private': '🔒 Private'
};
summary += `\n👁️ Visibility: ${visLabels[visibility] || visibility}`;
}
 
if (nominatorName) {
summary += `\n\n✍️ Recognized by: ${nominatorName}`;
}
 
return summary;
},
customStyles: {
padding: '16px',
borderRadius: '8px',
backgroundColor: '#fff7ed',
borderLeft: '4px solid #f97316',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: () => {
const visibility = visibilitySection.radioButton('visibility')?.value();
if (visibility === 'public') return 'Send Recognition';
return 'Submit Recognition';
},
isVisible: () => {
const name = recipientSection.textbox('nomineeName')?.value();
const rating = impactSection.starRating('impactRating')?.value();
return !!name && rating !== null && rating !== undefined;
}
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Recognition Sent!',
message: () => {
const nomineeName = recipientSection.textbox('nomineeName')?.value();
const visibility = visibilitySection.radioButton('visibility')?.value();
 
if (visibility === 'public') {
return `Your recognition for ${nomineeName || 'your colleague'} has been shared with the company! They'll be notified shortly.`;
}
if (visibility === 'team') {
return `Your recognition for ${nomineeName || 'your colleague'} has been shared with their team. They'll be notified shortly.`;
}
return `Your private recognition for ${nomineeName || 'your colleague'} has been sent. Only they and HR will see it.`;
}
});
}
 

Frequently Asked Questions

Why is peer recognition important?

Peer recognition boosts engagement by 14%, reduces turnover by 31%, and increases productivity. It's more meaningful than top-down recognition because colleagues see day-to-day efforts. Regular peer recognition builds team cohesion and reinforces company values organically.

Should recognition be public or private?

Offer both options. Public recognition amplifies impact and inspires others. Private recognition is important for those who prefer quiet appreciation or for sensitive situations. This form allows the nominator to choose visibility level.

How do I integrate recognition with company values?

Customize the 'Values Demonstrated' section with your company's core values. This connects recognition to culture and helps reinforce what behaviors matter. Track which values are recognized most to identify cultural strengths and gaps.

What should I do with recognition submissions?

Share public recognitions in team meetings, Slack channels, or newsletters. Consider monthly awards for most-recognized employees. Track recognition patterns to identify unsung heroes and ensure appreciation is distributed fairly across teams.

How can I encourage more peer recognition?

Make recognition easy and quick (this form takes 2 minutes). Celebrate submissions publicly. Consider gamification like recognition leaderboards. Lead by example - managers should actively recognize. Set team goals for recognition frequency.