-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmentor.html
More file actions
671 lines (606 loc) · 27 KB
/
mentor.html
File metadata and controls
671 lines (606 loc) · 27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BMCC Mentor Positions</title>
<style>
:root {
--primary-color: #003d82;
--secondary-color: #0056b3;
--accent-color: #ffd700;
--background-color: #f5f7fa;
--text-color: #333;
--card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
--sidebar-width: 250px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--background-color);
display: flex;
min-height: 100vh;
}
.sidebar {
width: var(--sidebar-width);
background-color: white;
border-right: 1px solid #eaeaea;
height: 100vh;
position: fixed;
left: 0; top: 0;
display: flex;
flex-direction: column;
box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}
.sidebar-header {
padding: 1.5rem;
border-bottom: 1px solid #eaeaea;
display: flex;
align-items: center;
gap: 1rem;
}
.logo-container { display: flex; align-items: center; gap: 0.5rem; }
.logo { width: 40px; height: 40px; background-color: var(--primary-color); border-radius: 8px; }
.logo-text { font-size: 1.2rem; font-weight: bold; color: var(--primary-color); }
.nav-menu {
padding: 1.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.nav-item {
padding: 0.75rem 1rem;
border-radius: 8px;
color: #666;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.75rem;
transition: all 0.3s ease;
}
.nav-item:hover { background-color: var(--background-color); color: var(--primary-color); }
.nav-item.active { background-color: var(--primary-color); color: white; }
.nav-icon { width: 20px; height: 20px; }
.user-profile {
position: relative;
padding: 1.5rem;
border-top: 1px solid #eaeaea;
cursor: pointer;
transition: background-color 0.3s ease;
}
.user-profile:hover { background-color: var(--background-color); }
.profile-content { display: flex; align-items: center; gap: 1rem; }
.profile-pic {
width: 40px; height: 40px;
border-radius: 50%;
background-color: var(--accent-color);
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: var(--primary-color);
}
.profile-info { flex-grow: 1; }
.profile-name { font-weight: 500; color: var(--text-color); }
.profile-role { font-size: 0.875rem; color: #666; }
.profile-menu {
position: absolute;
bottom: 100%; left: 0; right: 0;
background-color: white;
border-top: 1px solid #eaeaea;
box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px 8px 0 0;
overflow: hidden;
display: none;
z-index: 1000;
}
.profile-menu.active { display: block; }
.menu-item {
padding: 1rem 1.5rem;
display: flex;
align-items: center;
gap: 0.75rem;
color: var(--text-color);
text-decoration: none;
transition: background-color 0.3s ease;
}
.menu-item:hover { background-color: var(--background-color); }
.menu-item.logout { color: #dc3545; border-top: 1px solid #eaeaea; }
.menu-icon { width: 18px; height: 18px; }
.main-content {
margin-left: var(--sidebar-width);
flex-grow: 1;
padding: 2rem;
max-height: 100vh;
overflow-y: auto;
}
.page-header { margin-bottom: 2rem; }
.page-header h1 { color: var(--primary-color); font-size: 1.75rem; margin-bottom: 0.5rem; }
.page-header p { color: #666; }
.mentor-layout {
display: grid;
grid-template-columns: 280px 1fr;
gap: 1.5rem;
align-items: start;
}
@media (max-width: 768px) {
.mentor-layout { grid-template-columns: 1fr; }
}
.mentor-list {
background: white;
border-radius: 12px;
box-shadow: var(--card-shadow);
overflow: hidden;
}
.mentor-item {
padding: 1rem 1.25rem;
cursor: pointer;
border-left: 4px solid transparent;
border-bottom: 1px solid #f0f0f0;
transition: all 0.2s ease;
}
.mentor-item:last-child { border-bottom: none; }
.mentor-item:hover {
background-color: var(--background-color);
border-left-color: var(--secondary-color);
}
.mentor-item.active {
background-color: #e8f4fd;
border-left-color: var(--primary-color);
}
.mentor-item h3 { color: var(--primary-color); font-size: 0.95rem; margin-bottom: 0.2rem; }
.mentor-item p { color: #666; font-size: 0.8rem; }
.mentor-details {
background: white;
border-radius: 12px;
box-shadow: var(--card-shadow);
padding: 2rem;
min-height: 400px;
}
.mentor-details-placeholder {
display: flex;
align-items: center;
justify-content: center;
min-height: 400px;
}
.mentor-details-placeholder img {
max-height: 350px;
width: 100%;
object-fit: contain;
border-radius: 8px;
}
.detail-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
.detail-grid { grid-template-columns: 1fr; }
}
.detail-card {
background-color: var(--background-color);
padding: 1rem;
border-radius: 8px;
}
.detail-card h3 {
color: var(--primary-color);
font-size: 0.95rem;
font-weight: 600;
margin-bottom: 0.75rem;
}
.detail-card p { font-size: 0.875rem; color: var(--text-color); margin-bottom: 0.4rem; }
.detail-card span { font-weight: 600; }
.detail-list { list-style: none; }
.detail-list li {
font-size: 0.875rem;
color: #555;
padding: 0.2rem 0;
padding-left: 1rem;
position: relative;
}
.detail-list li::before {
content: '•';
position: absolute;
left: 0;
color: var(--secondary-color);
}
.detail-section { margin-bottom: 1.5rem; }
.detail-section h3 { color: var(--primary-color); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.75rem; }
.btn-primary {
padding: 0.65rem 1.5rem;
background-color: var(--secondary-color);
color: white;
border: none;
border-radius: 8px;
font-size: 0.95rem;
cursor: pointer;
transition: background-color 0.2s;
}
.btn-primary:hover { background-color: var(--primary-color); }
</style>
</head>
<body>
<!-- Sidebar -->
<aside class="sidebar">
<div class="sidebar-header">
<div class="logo-container">
<div class="logo"></div>
<span class="logo-text">BMCC Jobs</span>
</div>
</div>
<nav class="nav-menu">
<a href="#" class="nav-item" id="nav-dashboard">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"/>
</svg>
<span>Dashboard</span>
</a>
<a href="job-landing.html" class="nav-item active" id="nav-jobs">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
</svg>
<span>Available Jobs</span>
</a>
<a href="profile.html" class="nav-item" id="nav-profile">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/>
</svg>
<span>Profile</span>
</a>
<a href="hronboarding.html" class="nav-item" id="nav-onboarding">
<svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0z"/>
</svg>
<span>Onboarding</span>
</a>
</nav>
<div class="user-profile" onclick="toggleProfileMenu(event)">
<div class="profile-content">
<div class="profile-pic" id="sidebarInitial">S</div>
<div class="profile-info">
<div class="profile-name" id="sidebarName">Student</div>
<div class="profile-role" id="sidebarRole">Student</div>
</div>
</div>
<div class="profile-menu" id="profileMenu">
<a href="profile.html" class="menu-item">
<svg class="menu-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/>
</svg>
View Profile
</a>
<a href="#" class="menu-item logout" onclick="handleLogout(event)">
<svg class="menu-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1"/>
</svg>
Logout
</a>
</div>
</div>
</aside>
<!-- Main Content -->
<main class="main-content">
<div class="page-header">
<h1>Mentor Positions</h1>
<p>Explore available mentoring opportunities at BMCC</p>
</div>
<div class="mentor-layout">
<!-- Left: Mentor List -->
<div class="mentor-list">
<div class="mentor-item active" data-mentor="impact">
<h3>Freshman IMPACT Mentor</h3>
<p>Help new students transition to college life</p>
</div>
<div class="mentor-item" data-mentor="firstgen">
<h3>First-Gen Mentor</h3>
<p>Support first-generation college students</p>
</div>
<div class="mentor-item" data-mentor="umla">
<h3>UMLA Mentor</h3>
<p>Academic support for math and science</p>
</div>
<div class="mentor-item" data-mentor="peer">
<h3>Peer Success Mentor</h3>
<p>Guide students in academic success</p>
</div>
<div class="mentor-item" data-mentor="career">
<h3>Career Mentor</h3>
<p>Help with career planning and development</p>
</div>
</div>
<!-- Right: Details Panel -->
<div class="mentor-details" id="mentorDetails">
<div class="mentor-details-placeholder">
<img src="./images/mentor.jpg" alt="Mentor Program">
</div>
</div>
</div>
</main>
<script>
// Populate sidebar
const userName = localStorage.getItem('userName') || 'Student';
const userRole = localStorage.getItem('userRole') || 'Student';
document.getElementById('sidebarInitial').textContent = userName.charAt(0).toUpperCase();
document.getElementById('sidebarName').textContent = userName;
document.getElementById('sidebarRole').textContent = userRole;
function toggleProfileMenu(event) {
event.stopPropagation();
document.getElementById('profileMenu').classList.toggle('active');
}
function handleLogout(event) {
event.preventDefault();
event.stopPropagation();
localStorage.clear();
sessionStorage.clear();
window.location.href = 'index.html';
}
document.addEventListener('click', function(event) {
const menu = document.getElementById('profileMenu');
const profile = document.querySelector('.user-profile');
if (!profile.contains(event.target)) menu.classList.remove('active');
});
const mentorData = {
impact: {
title: "Freshman IMPACT Mentor",
pay: "$16.50/hour",
schedule: "10-15 hours/week",
requirements: [
"Minimum 3.0 GPA",
"Completed at least 24 credits at BMCC",
"Strong communication skills",
"Leadership experience preferred"
],
responsibilities: [
"Guide new students through their first year",
"Conduct weekly mentoring sessions",
"Assist with orientation programs",
"Maintain regular communication with mentees",
"Track mentee progress and provide reports"
],
benefits: [
"Professional development opportunities",
"Leadership experience",
"Networking with faculty and staff",
"Flexible schedule"
]
},
firstgen: {
title: "First-Generation Mentor",
pay: "$16.50/hour",
schedule: "12-15 hours/week",
requirements: [
"Must be a first-generation college student",
"Minimum 3.0 GPA",
"Completed at least 30 credits",
"Strong interpersonal skills"
],
responsibilities: [
"Support first-gen students in college transition",
"Provide academic and social support",
"Help navigate college resources",
"Organize workshops and events",
"Document mentee progress"
],
benefits: [
"Make a difference in students' lives",
"Build leadership skills",
"Professional training provided",
"Flexible hours"
]
},
umla: {
title: "UMLA Mentor",
pay: "$16.50/hour",
schedule: "10-12 hours/week",
requirements: [
"Minimum 3.2 GPA in math/science courses",
"Completed Calculus I or higher",
"Strong analytical skills",
"Patient and approachable"
],
responsibilities: [
"Provide tutoring in math and science",
"Run group study sessions",
"Create study materials",
"Track student improvement",
"Attend mentor training workshops"
],
benefits: [
"Strengthen your own subject knowledge",
"Teaching experience",
"Resume-building opportunity",
"Flexible hours"
]
},
peer: {
title: "Peer Success Mentor",
pay: "$16.00/hour",
schedule: "10-15 hours/week",
requirements: [
"Minimum 2.8 GPA",
"Completed at least 15 credits at BMCC",
"Good academic standing",
"Positive attitude and empathy"
],
responsibilities: [
"Meet weekly with assigned mentees",
"Help set academic goals",
"Connect students to campus resources",
"Attend monthly mentor meetings",
"Submit progress reports"
],
benefits: [
"Paid training provided",
"Leadership development",
"Transferable professional skills",
"Work on campus"
]
},
career: {
title: "Career Mentor",
pay: "$16.50/hour",
schedule: "10-12 hours/week",
requirements: [
"Minimum 3.0 GPA",
"Interest in career development",
"Completed at least 30 credits",
"Professional communication skills"
],
responsibilities: [
"Help students explore career paths",
"Assist with resume and cover letter reviews",
"Prepare students for interviews",
"Connect mentees with internship opportunities",
"Host career workshops"
],
benefits: [
"Career services training",
"Networking opportunities",
"Professional skill development",
"Flexible scheduling"
]
}
};
let currentMentorTitle = '';
function updateMentorDetails(mentorId) {
const d = mentorData[mentorId];
if (!d) return;
currentMentorTitle = d.title;
document.getElementById('mentorDetails').innerHTML = `
<h2 style="color:var(--primary-color);font-size:1.4rem;margin-bottom:1.5rem;">${d.title}</h2>
<div class="detail-grid">
<div class="detail-card">
<h3>Position Details</h3>
<p><span>Pay Rate:</span> ${d.pay}</p>
<p><span>Schedule:</span> ${d.schedule}</p>
</div>
<div class="detail-card">
<h3>Requirements</h3>
<ul class="detail-list">
${d.requirements.map(r => `<li>${r}</li>`).join('')}
</ul>
</div>
</div>
<div class="detail-section">
<h3>Key Responsibilities</h3>
<ul class="detail-list">
${d.responsibilities.map(r => `<li>${r}</li>`).join('')}
</ul>
</div>
<div class="detail-section">
<h3>Benefits</h3>
<ul class="detail-list">
${d.benefits.map(b => `<li>${b}</li>`).join('')}
</ul>
</div>
<div style="display:flex;justify-content:flex-end;margin-top:1rem;">
<button class="btn-primary" onclick="openApplyModal()">Apply Now</button>
</div>
`;
}
function openApplyModal() {
document.getElementById('applyModalTitle').textContent = `Apply — ${currentMentorTitle}`;
document.getElementById('applyForm').style.display = 'block';
document.getElementById('applySuccess').style.display = 'none';
document.getElementById('resumeLabel').textContent = 'Click to upload your resume';
document.getElementById('submitAppBtn').style.opacity = '0.5';
document.getElementById('submitAppBtn').style.pointerEvents = 'none';
document.getElementById('resumeInput').value = '';
document.getElementById('applyModal').classList.remove('hidden');
document.getElementById('applyModal').style.display = 'flex';
}
function closeApplyModal() {
document.getElementById('applyModal').style.display = 'none';
document.getElementById('applyModal').classList.add('hidden');
// If they closed after success, go to onboarding
if (document.getElementById('applySuccess').style.display !== 'none') {
window.location.href = 'hronboarding.html';
}
}
function handleResumeSelect(event) {
const file = event.target.files[0];
if (!file) return;
document.getElementById('resumeLabel').textContent = `✓ ${file.name}`;
document.getElementById('resumeDropzone').style.borderColor = 'var(--secondary-color)';
document.getElementById('submitAppBtn').style.opacity = '1';
document.getElementById('submitAppBtn').style.pointerEvents = 'auto';
}
function submitApplication() {
// Hide form, show success
document.getElementById('applyForm').style.display = 'none';
document.getElementById('applySuccess').style.display = 'block';
// Animate check circle
setTimeout(() => {
document.getElementById('checkCircle').style.transform = 'scale(1)';
}, 50);
// Animate text
setTimeout(() => {
const text = document.getElementById('successText');
text.style.opacity = '1';
text.style.transform = 'translateY(0)';
}, 400);
}
document.querySelectorAll('.mentor-item').forEach(item => {
item.addEventListener('click', function() {
document.querySelectorAll('.mentor-item').forEach(i => i.classList.remove('active'));
this.classList.add('active');
updateMentorDetails(this.dataset.mentor);
});
});
// Show first mentor by default
updateMentorDetails('impact');
</script>
<!-- Apply Modal -->
<div id="applyModal" style="display:none;position:fixed;inset:0;background:rgba(0,0,0,0.55);z-index:999;align-items:center;justify-content:center;" class="hidden">
<div style="background:white;border-radius:16px;padding:2rem;max-width:480px;width:100%;margin:1rem;box-shadow:0 20px 40px rgba(0,0,0,0.2);">
<!-- Application Form -->
<div id="applyForm">
<h2 style="color:var(--primary-color);margin-bottom:0.5rem;" id="applyModalTitle">Apply for Position</h2>
<p style="color:#666;font-size:0.875rem;margin-bottom:1.5rem;">Upload your resume to complete your application.</p>
<div style="border:2px dashed #ddd;border-radius:8px;padding:2rem;text-align:center;margin-bottom:1.5rem;cursor:pointer;transition:border-color 0.2s;"
onclick="document.getElementById('resumeInput').click()"
id="resumeDropzone">
<input type="file" id="resumeInput" accept=".pdf,.doc,.docx" hidden onchange="handleResumeSelect(event)">
<svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#aaa" stroke-width="1.5" style="margin:0 auto 0.75rem;">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/>
<polyline points="14 2 14 8 20 8"/>
<line x1="12" y1="18" x2="12" y2="12"/>
<line x1="9" y1="15" x2="15" y2="15"/>
</svg>
<p style="color:#666;font-size:0.9rem;" id="resumeLabel">Click to upload your resume</p>
<p style="color:#aaa;font-size:0.8rem;margin-top:0.25rem;">PDF, DOC, or DOCX</p>
</div>
<div style="display:flex;gap:0.75rem;justify-content:flex-end;">
<button onclick="closeApplyModal()"
style="padding:0.6rem 1.25rem;border:1px solid #ddd;border-radius:8px;background:white;color:#666;cursor:pointer;font-size:0.9rem;">
Cancel
</button>
<button onclick="submitApplication()" id="submitAppBtn"
style="padding:0.6rem 1.25rem;background:var(--secondary-color);color:white;border:none;border-radius:8px;cursor:pointer;font-size:0.9rem;opacity:0.5;pointer-events:none;">
Submit Application
</button>
</div>
</div>
<!-- Success State -->
<div id="applySuccess" style="display:none;text-align:center;padding:1rem 0;">
<div id="checkCircle" style="width:72px;height:72px;background:#d4edda;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem;transform:scale(0);transition:transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275);">
<svg width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="#28a745" stroke-width="2.5">
<polyline points="20 6 9 17 4 12"/>
</svg>
</div>
<h2 style="color:var(--primary-color);margin-bottom:0.5rem;">Application Submitted!</h2>
<div id="successText" style="opacity:0;transform:translateY(12px);transition:all 0.4s ease 0.3s;">
<p style="color:#555;margin-bottom:0.5rem;">Your application has been received.</p>
<p style="color:#555;font-weight:500;font-size:0.95rem;">Your onboarding portal is now open. Check your Onboarding page to complete required documents and get started!</p>
</div>
<button onclick="closeApplyModal()"
style="margin-top:1.5rem;padding:0.65rem 1.5rem;background:var(--secondary-color);color:white;border:none;border-radius:8px;cursor:pointer;font-size:0.9rem;">
Go to Onboarding
</button>
</div>
</div>
</div>
</body>
</html>