What's Your Leadership Style?

This leadership assessment identifies your dominant leadership style from five proven archetypes: Visionary (inspiring change through compelling vision), Coach (developing people and potential), Democratic (building consensus and collaboration), Pacesetter (driving excellence and results), and Servant (empowering and supporting others). Understand your natural strengths, blind spots, and get personalized recommendations for leadership development.

PersonalityPopular

Try the Quiz

👔 What's Your Leadership Style?
How do you approach important decisions?
 
 
 
How do you interact with your team?
 
 
 
How do you motivate and give feedback?
 
 
 
How do you handle difficult situations?
 
 
1I do it myself
7Full delegation
I do it myself
Full delegation
 
Discover your leadership DNA!
🔮 You are The Visionary Leader!
Inspiring Change & Direction
You lead by painting a compelling picture of the future. You inspire people with your vision and give them the freedom to figure out how to get there. Your strength is mobilizing teams around a shared purpose.
Strategic thinking • Inspiring communication • Change management • Big-picture focus
May overlook details • Can seem distant • Impatient with slow progress
Transformation, turnarounds, startups, new directions
Steve Jobs, Elon Musk, Oprah Winfrey
Your secondary style is 🎯 The Coach Leader, adding people development to your leadership toolkit.
Enter your details to receive your full leadership profile
Receive a detailed PDF with personalized development advice
 
 
 
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
export function leadershipStyleQuiz(form: FormTs) {
form.setTitle(() => '👔 What\'s Your Leadership Style?');
 
// ============ SCORING SYSTEM ============
const scores = form.state<Record<string, number>>({
visionary: 0,
coach: 0,
democratic: 0,
pacesetter: 0,
servant: 0
});
 
const updateScore = (style: string, points: number) => {
scores.update(current => ({
...current,
[style]: (current[style] || 0) + points
}));
};
 
type StyleKey = 'visionary' | 'coach' | 'democratic' | 'pacesetter' | 'servant';
 
const getTopStyle = (): StyleKey => {
const s = scores();
let maxStyle: StyleKey = 'visionary';
let maxScore = s['visionary'] || 0;
 
const styles: StyleKey[] = ['visionary', 'coach', 'democratic', 'pacesetter', 'servant'];
for (const style of styles) {
if ((s[style] || 0) > maxScore) {
maxScore = s[style] || 0;
maxStyle = style;
}
}
return maxStyle;
};
 
const getSecondaryStyle = (): StyleKey => {
const s = scores();
const top = getTopStyle();
let secondStyle: StyleKey = 'coach';
let secondScore = 0;
 
const styles: StyleKey[] = ['visionary', 'coach', 'democratic', 'pacesetter', 'servant'];
for (const style of styles) {
if (style !== top && (s[style] || 0) > secondScore) {
secondScore = s[style] || 0;
secondStyle = style;
}
}
return secondStyle;
};
 
const styleInfo: Record<StyleKey, { emoji: string; title: string; subtitle: string; description: string; strengths: string[]; blindSpots: string[]; bestFor: string; famousExamples: string }> = {
visionary: {
emoji: '🔮',
title: 'The Visionary Leader',
subtitle: 'Inspiring Change & Direction',
description: 'You lead by painting a compelling picture of the future. You inspire people with your vision and give them the freedom to figure out how to get there. Your strength is mobilizing teams around a shared purpose.',
strengths: ['Strategic thinking', 'Inspiring communication', 'Change management', 'Big-picture focus'],
blindSpots: ['May overlook details', 'Can seem distant', 'Impatient with slow progress'],
bestFor: 'Transformation, turnarounds, startups, new directions',
famousExamples: 'Steve Jobs, Elon Musk, Oprah Winfrey'
},
coach: {
emoji: '🎯',
title: 'The Coach Leader',
subtitle: 'Developing People & Potential',
description: 'You lead by investing in people\'s growth. You see potential in everyone and help them develop their strengths. Your one-on-one relationships and mentoring create lasting impact.',
strengths: ['People development', 'Active listening', 'Patient guidance', 'Long-term focus'],
blindSpots: ['May be too slow in crisis', 'Can neglect poor performers', 'May avoid tough decisions'],
bestFor: 'Developing talent, building culture, succession planning',
famousExamples: 'Bill Campbell, Pat Summitt, Phil Jackson'
},
democratic: {
emoji: '🤝',
title: 'The Democratic Leader',
subtitle: 'Building Consensus & Collaboration',
description: 'You lead by including others in decisions. You value diverse perspectives and build commitment through participation. Your collaborative approach creates buy-in and innovation.',
strengths: ['Inclusive decision-making', 'Team building', 'Fostering innovation', 'Building trust'],
blindSpots: ['Slow decisions in crisis', 'May frustrate top performers', 'Can create meeting overload'],
bestFor: 'Cross-functional teams, creative work, complex problems',
famousExamples: 'Indra Nooyi, Tim Cook, Satya Nadella'
},
pacesetter: {
emoji: '⚡',
title: 'The Pacesetter Leader',
subtitle: 'Driving Excellence & Results',
description: 'You lead by example, setting high standards and expecting the same from others. You push for excellence and quick results. Your drive for performance creates a high-achieving culture.',
strengths: ['High standards', 'Results orientation', 'Self-motivation', 'Quick execution'],
blindSpots: ['Can overwhelm team', 'May micromanage', 'Risk of burnout'],
bestFor: 'High-performing teams, quick wins, technical excellence',
famousExamples: 'Jeff Bezos, Marissa Mayer, Jack Welch'
},
servant: {
emoji: '🤲',
title: 'The Servant Leader',
subtitle: 'Empowering & Supporting Others',
description: 'You lead by putting others first. You focus on removing obstacles and empowering your team to succeed. Your humble approach builds deep loyalty and engagement.',
strengths: ['Empathy', 'Team empowerment', 'Building loyalty', 'Creating psychological safety'],
blindSpots: ['May lack assertiveness', 'Can be taken advantage of', 'May avoid conflict'],
bestFor: 'Building culture, customer service, community organizations',
famousExamples: 'Herb Kelleher, Mary Barra, Howard Schultz'
}
};
 
const getStyleColor = (style: StyleKey): string => {
const colors: Record<StyleKey, string> = {
visionary: '#8b5cf6',
coach: '#0891b2',
democratic: '#059669',
pacesetter: '#dc2626',
servant: '#f59e0b'
};
return colors[style];
};
 
// ============ COMPLETION SCREEN ============
form.configureCompletionScreen({
type: 'text',
title: () => {
const top = getTopStyle();
return `${styleInfo[top].emoji} You're ${styleInfo[top].title}!`;
},
message: () => {
const top = getTopStyle();
const secondary = getSecondaryStyle();
return `${styleInfo[top].description}\n\nYour secondary style is ${styleInfo[secondary].title}, which adds ${(styleInfo[secondary].strengths[0] || '').toLowerCase()} to your leadership toolkit.`;
}
});
 
// ============ PAGES SETUP ============
const pages = form.addPages('quiz-pages', {
heightMode: 'current-page'
});
 
// ============ PAGE 1: Decision Making ============
const page1 = pages.addPage('decisions', { mobileBreakpoint: 500 });
 
page1.addRow(row => {
row.addTextPanel('header1', {
label: 'Step 1 of 6: Decision Making',
computedValue: () => 'How do you approach important decisions?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page1.addSpacer({ height: '24px' });
 
page1.addRow(row => {
row.addRadioButton('decisionApproach', {
label: 'When facing a major decision, you typically:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Trust your instinct about where things should go' },
{ id: 'coach', name: '🎯 Consider how it affects each team member\'s growth' },
{ id: 'democratic', name: '🤝 Gather input from everyone involved' },
{ id: 'pacesetter', name: '⚡ Analyze the data and make a quick call' },
{ id: 'servant', name: '🤲 Ask the team what support they need' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page1.addRow(row => {
row.addRadioButton('disagreement', {
label: 'When your team disagrees with your decision, you:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Explain the bigger picture and why this matters' },
{ id: 'coach', name: '🎯 Use it as a coaching moment to explore their thinking' },
{ id: 'democratic', name: '🤝 Revisit the decision together and find common ground' },
{ id: 'pacesetter', name: '⚡ Show them the data and move forward' },
{ id: 'servant', name: '🤲 Listen deeply to understand their concerns' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page1.addRow(row => {
row.addRadioButton('urgency', {
label: 'In a crisis, you\'re most likely to:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Rally the team around a bold new direction' },
{ id: 'coach', name: '🎯 Check in with key people and support them' },
{ id: 'democratic', name: '🤝 Quickly gather the key stakeholders' },
{ id: 'pacesetter', name: '⚡ Take charge and lead by example' },
{ id: 'servant', name: '🤲 Clear obstacles so the team can work' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
// ============ PAGE 2: Team Interactions ============
const page2 = pages.addPage('team', { mobileBreakpoint: 500 });
 
page2.addRow(row => {
row.addTextPanel('header2', {
label: 'Step 2 of 6: Team Interactions',
computedValue: () => 'How do you interact with your team?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page2.addSpacer({ height: '24px' });
 
page2.addRow(row => {
row.addRadioButton('oneOnOne', {
label: 'In one-on-one meetings, you focus most on:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Connecting their work to the bigger mission' },
{ id: 'coach', name: '🎯 Their career goals and development' },
{ id: 'democratic', name: '🤝 Getting their input on team decisions' },
{ id: 'pacesetter', name: '⚡ Progress on goals and removing blockers' },
{ id: 'servant', name: '🤲 What you can do to help them succeed' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page2.addRow(row => {
row.addRadioButton('newHire', {
label: 'When onboarding a new team member, you prioritize:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Sharing the vision and why we exist' },
{ id: 'coach', name: '🎯 Creating a 90-day development plan' },
{ id: 'democratic', name: '🤝 Introducing them to everyone and team norms' },
{ id: 'pacesetter', name: '⚡ Getting them up to speed quickly on their work' },
{ id: 'servant', name: '🤲 Making sure they have everything they need' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page2.addRow(row => {
row.addEmojiRating('teamEnergy', {
label: 'What gives you the most energy as a leader?',
isRequired: true,
preset: 'custom',
emojis: [
{ id: 'visionary', emoji: '🌟', label: 'Inspiring' },
{ id: 'coach', emoji: '🌱', label: 'Growing' },
{ id: 'democratic', emoji: '🤝', label: 'Collaborating' },
{ id: 'pacesetter', emoji: '🏆', label: 'Winning' },
{ id: 'servant', emoji: '💝', label: 'Serving' }
],
size: 'lg',
showLabels: true,
alignment: 'center',
onValueChange: (val) => {
if (!val) return;
updateScore(val, 4);
}
});
});
 
// ============ PAGE 3: Motivation & Feedback ============
const page3 = pages.addPage('motivation', { mobileBreakpoint: 500 });
 
page3.addRow(row => {
row.addTextPanel('header3', {
label: 'Step 3 of 6: Motivation & Feedback',
computedValue: () => 'How do you motivate and give feedback?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page3.addSpacer({ height: '24px' });
 
page3.addRow(row => {
row.addRadioButton('motivation', {
label: 'You believe people are most motivated by:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Being part of something meaningful and big' },
{ id: 'coach', name: '🎯 Growing and developing their skills' },
{ id: 'democratic', name: '🤝 Having a voice and feeling valued' },
{ id: 'pacesetter', name: '⚡ Achieving excellence and being the best' },
{ id: 'servant', name: '🤲 Feeling supported and cared for' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page3.addRow(row => {
row.addRadioButton('feedback', {
label: 'When giving critical feedback, you:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Connect it to the bigger picture and expectations' },
{ id: 'coach', name: '🎯 Frame it as a development opportunity' },
{ id: 'democratic', name: '🤝 Have a two-way conversation about it' },
{ id: 'pacesetter', name: '⚡ Be direct and specific about what needs to change' },
{ id: 'servant', name: '🤲 Start by asking how you can help them improve' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page3.addRow(row => {
row.addRadioButton('recognition', {
label: 'You prefer to recognize good work by:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Highlighting their contribution to the mission' },
{ id: 'coach', name: '🎯 Acknowledging specific growth and improvement' },
{ id: 'democratic', name: '🤝 Celebrating as a team' },
{ id: 'pacesetter', name: '⚡ Rewarding results with more responsibility' },
{ id: 'servant', name: '🤲 Privately thanking them and asking what they need' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
// ============ PAGE 4: Challenges ============
const page4 = pages.addPage('challenges', { mobileBreakpoint: 500 });
 
page4.addRow(row => {
row.addTextPanel('header4', {
label: 'Step 4 of 6: Leadership Challenges',
computedValue: () => 'How do you handle difficult situations?',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page4.addSpacer({ height: '24px' });
 
page4.addRow(row => {
row.addRadioButton('underperformer', {
label: 'When dealing with an underperformer, you first:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Check if they\'re connected to the mission' },
{ id: 'coach', name: '🎯 Create a detailed improvement plan together' },
{ id: 'democratic', name: '🤝 Get input from the team and have honest discussions' },
{ id: 'pacesetter', name: '⚡ Set clear expectations and deadlines' },
{ id: 'servant', name: '🤲 Ask what\'s blocking them and how to help' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page4.addRow(row => {
row.addRadioButton('change', {
label: 'When leading through change, you focus on:',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'vision', name: '🔮 Communicating the exciting future ahead' },
{ id: 'coach', name: '🎯 Helping each person adapt and grow' },
{ id: 'democratic', name: '🤝 Involving people in shaping the change' },
{ id: 'pacesetter', name: '⚡ Moving quickly and leading by example' },
{ id: 'servant', name: '🤲 Supporting people through the transition' }
],
onValueChange: (val) => {
if (!val) return;
const mapping: Record<string, string> = { vision: 'visionary', coach: 'coach', democratic: 'democratic', pacesetter: 'pacesetter', servant: 'servant' };
updateScore(mapping[val] || 'visionary', 4);
}
});
});
 
page4.addRow(row => {
row.addRatingScale('delegation', {
label: 'How comfortable are you with delegation?',
isRequired: true,
preset: 'likert-7',
lowLabel: 'I do it myself',
highLabel: 'Full delegation',
size: 'md',
alignment: 'center',
variant: 'buttons',
onValueChange: (val) => {
if (val == null) return;
// 1-2: pacesetter (control), 3-4: visionary/coach (some), 5-7: democratic/servant (delegate)
if (val <= 2) updateScore('pacesetter', 3);
else if (val <= 4) updateScore('coach', 3);
else if (val === 5) updateScore('democratic', 3);
else updateScore('servant', 3);
}
});
});
 
// ============ PAGE 5: Results ============
const page5 = pages.addPage('results', { mobileBreakpoint: 500 });
 
page5.addRow(row => {
row.addTextPanel('header5', {
label: 'Step 5 of 6: Your Results',
computedValue: () => 'Discover your leadership DNA!',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page5.addSpacer({ height: '24px' });
 
page5.addRow(row => {
row.addTextPanel('resultTitle', {
computedValue: () => {
const top = getTopStyle();
return `${styleInfo[top].emoji} You are ${styleInfo[top].title}!`;
},
customStyles: {
fontSize: '1.8rem',
fontWeight: '800',
textAlign: 'center',
color: getStyleColor(getTopStyle()),
padding: '20px',
background: '#f9fafb',
borderRadius: '12px',
border: `3px solid ${getStyleColor(getTopStyle())}`
}
});
});
 
page5.addRow(row => {
row.addTextPanel('resultSubtitle', {
computedValue: () => styleInfo[getTopStyle()].subtitle,
customStyles: {
fontSize: '1.1rem',
color: '#6b7280',
textAlign: 'center',
marginTop: '0.5rem',
fontStyle: 'italic'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('resultDescription', {
computedValue: () => styleInfo[getTopStyle()].description,
customStyles: {
fontSize: '1rem',
color: '#4b5563',
textAlign: 'center',
lineHeight: '1.7',
padding: '20px',
marginTop: '1rem'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('strengths', {
label: '💪 Your Strengths',
computedValue: () => styleInfo[getTopStyle()].strengths.join(' • '),
customStyles: {
fontSize: '0.95rem',
color: '#059669',
padding: '15px',
background: '#ecfdf5',
borderRadius: '8px',
marginTop: '1rem'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('blindSpots', {
label: '👁️ Watch Out For',
computedValue: () => styleInfo[getTopStyle()].blindSpots.join(' • '),
customStyles: {
fontSize: '0.95rem',
color: '#d97706',
padding: '15px',
background: '#fffbeb',
borderRadius: '8px',
marginTop: '0.5rem'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('bestFor', {
label: '🎯 Best For',
computedValue: () => styleInfo[getTopStyle()].bestFor,
customStyles: {
fontSize: '0.95rem',
color: '#1e40af',
padding: '15px',
background: '#dbeafe',
borderRadius: '8px',
marginTop: '0.5rem'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('famous', {
label: '⭐ Famous Examples',
computedValue: () => styleInfo[getTopStyle()].famousExamples,
customStyles: {
fontSize: '0.95rem',
color: '#6b7280',
padding: '15px',
background: '#f3f4f6',
borderRadius: '8px',
marginTop: '0.5rem'
}
});
});
 
page5.addRow(row => {
row.addTextPanel('secondary', {
computedValue: () => {
const secondary = getSecondaryStyle();
return `Your secondary style is ${styleInfo[secondary].emoji} ${styleInfo[secondary].title}, adding ${(styleInfo[secondary].strengths[0] || '').toLowerCase()} to your leadership toolkit.`;
},
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
textAlign: 'center',
padding: '15px',
marginTop: '1rem',
fontStyle: 'italic'
}
});
});
 
// ============ PAGE 6: Lead Capture ============
const page6 = pages.addPage('lead-capture', { mobileBreakpoint: 500 });
 
page6.addRow(row => {
row.addTextPanel('header6', {
label: 'Step 6 of 6: Get Your Report',
computedValue: () => 'Enter your details to receive your full leadership profile',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
marginBottom: '1rem'
}
});
});
 
page6.addSpacer({ height: '24px' });
 
page6.addRow(row => {
row.addTextPanel('leadCapture', {
label: '📧 Get Your Full Leadership Profile',
computedValue: () => 'Receive a detailed PDF with personalized development advice',
customStyles: {
fontSize: '0.9rem',
color: '#6b7280'
}
});
});
 
page6.addRow(row => {
row.addTextbox('name', {
label: 'Your Name',
isRequired: true,
placeholder: 'John Smith'
}, '1fr');
 
row.addEmail('email', {
label: 'Email',
isRequired: true,
placeholder: 'john@company.com'
}, '1fr');
});
 
page6.addRow(row => {
row.addTextbox('company', {
label: 'Company',
placeholder: 'Acme Corp'
}, '1fr');
 
row.addDropdown('role', {
label: 'Your Role',
options: [
{ id: 'executive', name: '👔 Executive (C-level, VP)' },
{ id: 'director', name: '📊 Director/Senior Manager' },
{ id: 'manager', name: '👥 Manager/Team Lead' },
{ id: 'individual', name: '🎯 Individual Contributor' },
{ id: 'aspiring', name: '🌱 Aspiring Leader' }
],
placeholder: 'Select role'
}, '1fr');
});
 
page6.addRow(row => {
row.addCheckboxList('consent', {
options: [
{ id: 'report', name: '📄 Send me my detailed leadership profile', isRequired: true },
{ id: 'tips', name: '💡 Send me leadership development tips' },
{ id: 'coaching', name: '📞 I\'d like to explore leadership coaching' }
],
defaultValue: ['report'],
orientation: 'vertical'
});
});
 
// ============ PDF REPORT ============
form.configurePdf('leadership-report', pdf => {
pdf.configure({
filename: 'leadership-style-report.pdf',
pageSize: 'A4',
allowUserDownload: true,
downloadButtonLabel: '📄 Download Your Profile',
header: {
title: 'Leadership Style Report',
subtitle: 'Your Personalized Leadership Profile'
},
footer: {
text: 'Generated by FormTs Leadership Quiz',
showPageNumbers: true
}
});
 
const top = getTopStyle();
const secondary = getSecondaryStyle();
 
pdf.addSection('Your Primary Leadership Style', section => {
section.addRow(row => {
row.addField('Style', `${styleInfo[top].emoji} ${styleInfo[top].title}`);
});
section.addText(styleInfo[top].description);
});
 
pdf.addSection('Strengths & Development Areas', section => {
section.addRow(row => {
row.addField('Key Strengths', styleInfo[top].strengths.join(', '));
});
section.addRow(row => {
row.addField('Watch Out For', styleInfo[top].blindSpots.join(', '));
});
section.addRow(row => {
row.addField('Best Applied In', styleInfo[top].bestFor);
});
section.addRow(row => {
row.addField('Famous Examples', styleInfo[top].famousExamples);
});
});
 
pdf.addSection('Your Secondary Style', section => {
section.addRow(row => {
row.addField('Style', `${styleInfo[secondary].emoji} ${styleInfo[secondary].title}`);
});
section.addText(`Your secondary style adds ${(styleInfo[secondary].strengths[0] || '').toLowerCase()} to your leadership approach.`);
});
 
pdf.addPageBreak();
 
pdf.addSection('Score Breakdown', section => {
const s = scores();
section.addTable(
['Leadership Style', 'Score', 'Percentage'],
[
['🔮 Visionary', `${s['visionary'] || 0}`, `${Math.round(((s['visionary'] || 0) / 55) * 100)}%`],
['🎯 Coach', `${s['coach'] || 0}`, `${Math.round(((s['coach'] || 0) / 55) * 100)}%`],
['🤝 Democratic', `${s['democratic'] || 0}`, `${Math.round(((s['democratic'] || 0) / 55) * 100)}%`],
['⚡ Pacesetter', `${s['pacesetter'] || 0}`, `${Math.round(((s['pacesetter'] || 0) / 55) * 100)}%`],
['🤲 Servant', `${s['servant'] || 0}`, `${Math.round(((s['servant'] || 0) / 55) * 100)}%`]
]
);
});
 
pdf.addSection('Development Recommendations', section => {
if (top === 'visionary') {
section.addText('1. Schedule regular check-ins to stay connected to details');
section.addText('2. Ask more questions before sharing your vision');
section.addText('3. Celebrate small wins, not just big achievements');
section.addText('4. Balance inspiration with practical roadmaps');
} else if (top === 'coach') {
section.addText('1. Practice making faster decisions when needed');
section.addText('2. Set clearer performance expectations upfront');
section.addText('3. Don\'t avoid difficult conversations about performance');
section.addText('4. Balance individual development with team results');
} else if (top === 'democratic') {
section.addText('1. Develop confidence in making solo decisions when needed');
section.addText('2. Set time limits for consensus-building');
section.addText('3. Learn to move forward with 80% agreement');
section.addText('4. Balance inclusion with efficiency');
} else if (top === 'pacesetter') {
section.addText('1. Practice patience and allow for learning curves');
section.addText('2. Delegate more and resist micromanaging');
section.addText('3. Recognize that not everyone operates at your pace');
section.addText('4. Build in recovery time to prevent team burnout');
} else {
section.addText('1. Practice being more directive when situations require it');
section.addText('2. Don\'t shy away from healthy conflict');
section.addText('3. Set boundaries to avoid being taken advantage of');
section.addText('4. Balance service with holding people accountable');
}
});
});
 
// ============ SUBMIT BUTTON ============
form.configureSubmitButton({
label: () => `👔 Get My ${styleInfo[getTopStyle()].title} Profile`
});
 
form.configureSubmitBehavior({
sendToServer: true
});
}
 

Frequently Asked Questions

What are the 5 leadership styles?

The five styles are: Visionary (inspiring direction like Steve Jobs), Coach (developing people like Bill Campbell), Democratic (building consensus like Tim Cook), Pacesetter (driving results like Jeff Bezos), and Servant (empowering others like Herb Kelleher).

Is one leadership style better than others?

No single style is universally best. Each style has strengths and is more effective in certain situations. The best leaders can adapt their style to the situation while staying authentic to their natural tendencies.

Can I develop other leadership styles?

Yes! While you have a natural primary style, you can develop competencies in other styles. The key is awareness of your tendencies and intentional practice of behaviors from other styles when situations call for them.

How can I use these results?

Use your results to: understand your natural leadership tendencies, recognize potential blind spots, adapt your approach for different team members, hire complementary leaders, and create a personal development plan.