Creative Brief Feedback Form

This creative brief feedback form helps agencies and internal teams validate project briefs before work begins. Reviewers can rate clarity of objectives, target audience definition, brand guidelines, timeline feasibility, and budget alignment. The form identifies gaps and ambiguities early, reducing revisions and ensuring creative work meets expectations.

B2B & Professional

Try the Form

Your feedback ensures our creative work meets your expectations. Please review the brief carefully.
Overall Brief Assessment
0/5
Brief Components Assessment
Unclear Needs Work Acceptable Good Excellent
Project objectives & goals*
Target audience definition*
Key messages & tone
Deliverables & formats
Timeline & milestones
Budget & resources
Success metrics / KPIs
Brand guidelines & assets
Strategic Alignment
Strongly Disagree
Strongly Agree
Strongly Disagree
Strongly Agree
Strongly Disagree
Strongly Agree
Areas of Concern
 
 
Timeline & Budget Review
 
 
Your Decision
 
Reviewer 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
export function creativeBriefFeedback(form: FormTs) {
// Creative Brief Feedback Form
// Demonstrates: MatrixQuestion, RatingScale (Likert), StarRating, RadioButton, ThumbRating, conditional visibility, dynamic labels
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Creative Brief Review',
computedValue: () => 'Your feedback ensures our creative work meets your expectations. Please review the brief carefully.',
customStyles: {
background: 'linear-gradient(135deg, #7c3aed 0%, #a855f7 100%)',
color: 'white',
padding: '28px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Brief Overview Approval
// ============================================
const overviewSection = form.addSubform('overviewSection', {
title: 'Overall Brief Assessment',
customStyles: { backgroundColor: '#faf5ff', padding: '16px', borderRadius: '8px' }
});
 
overviewSection.addRow(row => {
row.addThumbRating('briefApproval', {
label: 'Does this brief capture your project needs?',
showLabels: true,
upLabel: 'Yes, well captured',
downLabel: 'Needs revision',
alignment: 'center',
size: 'lg'
});
});
 
overviewSection.addRow(row => {
row.addStarRating('briefClarity', {
label: 'Overall clarity of the brief',
maxStars: 5,
size: 'lg',
alignment: 'center',
showConfettiOnMax: true
});
});
 
// ============================================
// SECTION 2: Brief Components Rating
// ============================================
const componentsSection = form.addSubform('componentsSection', {
title: 'Brief Components Assessment'
});
 
componentsSection.addRow(row => {
row.addMatrixQuestion('briefMatrix', {
label: 'Please rate the clarity and completeness of each section:',
rows: [
{ id: 'objectives', label: 'Project objectives & goals', isRequired: true },
{ id: 'audience', label: 'Target audience definition', isRequired: true },
{ id: 'message', label: 'Key messages & tone' },
{ id: 'deliverables', label: 'Deliverables & formats' },
{ id: 'timeline', label: 'Timeline & milestones' },
{ id: 'budget', label: 'Budget & resources' },
{ id: 'success', label: 'Success metrics / KPIs' },
{ id: 'brand', label: 'Brand guidelines & assets' }
],
columns: [
{ id: 'unclear', label: 'Unclear' },
{ id: 'needs-work', label: 'Needs Work' },
{ id: 'acceptable', label: 'Acceptable' },
{ id: 'good', label: 'Good' },
{ id: 'excellent', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 3: Strategic Alignment
// ============================================
const alignmentSection = form.addSubform('alignmentSection', {
title: 'Strategic Alignment'
});
 
alignmentSection.addRow(row => {
row.addRatingScale('brandAlignment', {
preset: 'likert-5',
label: 'The brief aligns with our brand strategy and values',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
alignmentSection.addRow(row => {
row.addRatingScale('audienceRelevance', {
preset: 'likert-5',
label: 'The proposed approach will resonate with our target audience',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
alignmentSection.addRow(row => {
row.addRatingScale('differentiation', {
preset: 'likert-5',
label: 'The creative direction will differentiate us from competitors',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
// ============================================
// SECTION 4: Concerns (if any)
// ============================================
const concernsSection = form.addSubform('concernsSection', {
title: 'Areas of Concern',
isVisible: () => {
const approval = overviewSection.thumbRating('briefApproval')?.value();
const clarity = overviewSection.starRating('briefClarity')?.value();
return approval === 'down' || (clarity !== null && clarity !== undefined && clarity <= 3);
},
customStyles: { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' }
});
 
concernsSection.addRow(row => {
row.addCheckboxList('concernAreas', {
label: 'What areas need clarification or revision?',
options: [
{ id: 'objectives', name: 'Project objectives unclear' },
{ id: 'audience', name: 'Target audience not well defined' },
{ id: 'tone', name: 'Tone/messaging needs refinement' },
{ id: 'deliverables', name: 'Deliverables list incomplete' },
{ id: 'timeline', name: 'Timeline concerns' },
{ id: 'budget', name: 'Budget/scope mismatch' },
{ id: 'brand', name: 'Brand guidelines missing' },
{ id: 'approval', name: 'Approval process unclear' },
{ id: 'other', name: 'Other concerns' }
],
orientation: 'vertical'
});
});
 
concernsSection.addSpacer({ height: '12px' });
 
concernsSection.addRow(row => {
row.addTextarea('concernDetails', {
label: 'Please describe your concerns in detail',
placeholder: 'Specific details help us address your concerns quickly...',
rows: 4,
autoExpand: true,
isRequired: true
});
});
 
// ============================================
// SECTION 5: Positive Feedback (High ratings)
// ============================================
const positiveSection = form.addSubform('positiveSection', {
title: 'What We Got Right',
isVisible: () => {
const clarity = overviewSection.starRating('briefClarity')?.value();
return clarity !== null && clarity !== undefined && clarity >= 4;
},
customStyles: { backgroundColor: '#dcfce7', padding: '16px', borderRadius: '8px' }
});
 
positiveSection.addRow(row => {
row.addSuggestionChips('strengths', {
label: 'What stood out positively in this brief?',
suggestions: [
{ id: 'clear-goals', name: 'Clear goals' },
{ id: 'good-research', name: 'Good audience research' },
{ id: 'creative-direction', name: 'Strong creative direction' },
{ id: 'realistic-timeline', name: 'Realistic timeline' },
{ id: 'complete-assets', name: 'Complete brand assets' },
{ id: 'measurable-kpis', name: 'Measurable KPIs' },
{ id: 'competitive-insight', name: 'Good competitive insight' },
{ id: 'well-structured', name: 'Well structured' }
],
max: 4,
alignment: 'center'
});
});
 
// ============================================
// SECTION 6: Timeline & Budget
// ============================================
const resourcesSection = form.addSubform('resourcesSection', {
title: 'Timeline & Budget Review'
});
 
resourcesSection.addRow(row => {
row.addRadioButton('timelineFeasibility', {
label: 'Is the proposed timeline realistic?',
options: [
{ id: 'too-tight', name: 'Too tight - needs more time' },
{ id: 'challenging', name: 'Challenging but achievable' },
{ id: 'realistic', name: 'Realistic and well planned' },
{ id: 'generous', name: 'Has buffer - could accelerate' }
],
orientation: 'vertical'
}, '1fr');
row.addRadioButton('budgetAlignment', {
label: 'Does the budget align with deliverables?',
options: [
{ id: 'under', name: 'Under-budgeted for scope' },
{ id: 'tight', name: 'Tight but workable' },
{ id: 'appropriate', name: 'Appropriately budgeted' },
{ id: 'over', name: 'Could achieve more with budget' }
],
orientation: 'vertical'
}, '1fr');
});
 
resourcesSection.addRow(row => {
row.addTextarea('resourceComments', {
label: 'Any comments on timeline or budget?',
placeholder: 'Suggest adjustments or highlight risks...',
rows: 2,
autoExpand: true,
isVisible: () => {
const timeline = resourcesSection.radioButton('timelineFeasibility')?.value();
const budget = resourcesSection.radioButton('budgetAlignment')?.value();
return timeline === 'too-tight' || budget === 'under';
}
});
});
 
// ============================================
// SECTION 7: Approval Decision
// ============================================
const decisionSection = form.addSubform('decisionSection', {
title: 'Your Decision',
customStyles: { backgroundColor: '#f8fafc', padding: '16px', borderRadius: '8px' }
});
 
decisionSection.addRow(row => {
row.addRadioButton('approvalDecision', {
label: 'Based on your review, this brief is:',
options: [
{ id: 'approved', name: 'Approved - Ready to proceed' },
{ id: 'approved-minor', name: 'Approved with minor changes' },
{ id: 'revisions', name: 'Needs revisions before approval' },
{ id: 'major-rework', name: 'Requires significant rework' }
],
orientation: 'vertical',
isRequired: true
});
});
 
decisionSection.addSpacer({ height: '12px' });
 
decisionSection.addRow(row => {
row.addTextarea('revisionNotes', {
label: () => {
const decision = decisionSection.radioButton('approvalDecision')?.value();
if (decision === 'approved-minor') return 'What minor changes are needed?';
if (decision === 'revisions') return 'What revisions are required before you can approve?';
if (decision === 'major-rework') return 'Please describe the issues that need to be addressed';
return 'Any additional notes for the creative team?';
},
placeholder: () => {
const decision = decisionSection.radioButton('approvalDecision')?.value();
if (decision === 'approved') return 'Optional: Share any additional guidance for the team...';
return 'Please be specific so the team can address your feedback...';
},
rows: 4,
autoExpand: true,
isRequired: () => {
const decision = decisionSection.radioButton('approvalDecision')?.value();
return decision === 'revisions' || decision === 'major-rework';
}
});
});
 
// ============================================
// SECTION 8: Reviewer Information
// ============================================
const reviewerSection = form.addSubform('reviewerSection', {
title: 'Reviewer Information'
});
 
reviewerSection.addRow(row => {
row.addTextbox('reviewerName', {
label: 'Your name',
placeholder: 'First and last name',
isRequired: true
}, '1fr');
row.addDropdown('reviewerRole', {
label: 'Your role',
options: [
{ id: 'marketing-lead', name: 'Marketing Lead' },
{ id: 'brand-manager', name: 'Brand Manager' },
{ id: 'product-manager', name: 'Product Manager' },
{ id: 'executive', name: 'Executive Sponsor' },
{ id: 'legal', name: 'Legal/Compliance' },
{ id: 'other', name: 'Other Stakeholder' }
],
placeholder: 'Select role'
}, '1fr');
});
 
reviewerSection.addRow(row => {
row.addEmail('reviewerEmail', {
label: 'Email',
placeholder: 'your@company.com',
isRequired: true
}, '1fr');
row.addCheckbox('scheduleDiscussion', {
label: 'I would like to schedule a brief discussion call'
}, '1fr');
});
 
// ============================================
// SECTION 9: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Review Summary',
isVisible: () => decisionSection.radioButton('approvalDecision')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const clarity = overviewSection.starRating('briefClarity')?.value();
const approval = overviewSection.thumbRating('briefApproval')?.value();
const decision = decisionSection.radioButton('approvalDecision')?.value();
const timeline = resourcesSection.radioButton('timelineFeasibility')?.value();
const budget = resourcesSection.radioButton('budgetAlignment')?.value();
const strengths = positiveSection.suggestionChips('strengths')?.value() || [];
 
if (!decision) return '';
 
const decisionEmojis: Record<string, string> = {
'approved': '✅',
'approved-minor': '✏️',
'revisions': '🔄',
'major-rework': '⚠️'
};
 
const decisionLabels: Record<string, string> = {
'approved': 'Approved',
'approved-minor': 'Approved with minor changes',
'revisions': 'Revisions needed',
'major-rework': 'Major rework required'
};
 
let summary = `${decisionEmojis[decision] || '📋'} Brief Review Summary\n`;
summary += `${'═'.repeat(28)}\n\n`;
summary += `📝 Decision: ${decisionLabels[decision] || decision}\n`;
 
if (clarity) {
summary += `⭐ Brief Clarity: ${clarity}/5\n`;
}
 
if (approval) {
summary += `👍 Captures needs: ${approval === 'up' ? 'Yes' : 'Needs work'}\n`;
}
 
if (timeline) {
const timelineLabels: Record<string, string> = {
'too-tight': '⏰ Timeline: Too tight',
'challenging': '⏰ Timeline: Challenging',
'realistic': '⏰ Timeline: Realistic',
'generous': '⏰ Timeline: Has buffer'
};
summary += `\n${timelineLabels[timeline] || timeline}`;
}
 
if (budget) {
const budgetLabels: Record<string, string> = {
'under': '💰 Budget: Under-scoped',
'tight': '💰 Budget: Tight',
'appropriate': '💰 Budget: Appropriate',
'over': '💰 Budget: Has room'
};
summary += `\n${budgetLabels[budget] || budget}`;
}
 
if (strengths.length > 0) {
summary += `\n\n✨ Strengths highlighted: ${strengths.length}`;
}
 
return summary;
},
customStyles: () => {
const decision = decisionSection.radioButton('approvalDecision')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (decision === 'approved') {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (decision === 'approved-minor') {
return { ...baseStyles, backgroundColor: '#dbeafe', borderLeft: '4px solid #3b82f6' };
} else if (decision === 'revisions') {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else if (decision === 'major-rework') {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return baseStyles;
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Brief Review',
isVisible: () => decisionSection.radioButton('approvalDecision')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Review!',
message: 'Your feedback has been recorded. The creative team will review your comments and follow up if clarification is needed.'
});
}
 

Frequently Asked Questions

When should this form be used?

Use this form after presenting a creative brief but before project kickoff. It helps identify unclear areas, missing information, or misaligned expectations early when changes are least costly.

Who should fill out the brief feedback form?

All stakeholders who will approve or be impacted by the creative work should provide feedback. This typically includes marketing managers, brand leads, product owners, and sometimes executives for high-visibility campaigns.

Can I use this for internal creative teams?

Absolutely! The form works equally well for internal creative teams and external agencies. It ensures clear communication between the requester and creative team regardless of reporting structure.

How does this help reduce revisions?

By systematically reviewing objectives, audience, tone, and deliverables upfront, the form catches misunderstandings before work begins. Clear alignment on success metrics also helps evaluate final work objectively.

Should I include budget questions?

Yes, if relevant. The form includes optional budget alignment questions. Confirming budget expectations early prevents scope creep and ensures deliverables match available resources.