-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
482 lines (442 loc) · 19.4 KB
/
index.php
File metadata and controls
482 lines (442 loc) · 19.4 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
<?php
ini_set('session.cookie_httponly', 1);
ini_set('session.cookie_secure', 0);
ini_set('session.use_strict_mode', 1);
session_start();
require_once __DIR__ . '/lib/auth.php';
if (isset($_SESSION['user_id'])) {
redirectBasedOnRole($_SESSION['role']);
}
?>
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkillPath AI | Future-Proof Your Career</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap" rel="stylesheet">
<!-- UI Libraries -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<style>
:root {
--primary: #3b82f6;
--primary-glow: rgba(59, 130, 246, 0.5);
--bg-dark: #020617;
--bg-card: rgba(15, 23, 42, 0.6);
--accent: #38bdf8;
--text-main: #f8fafc;
--text-dim: #94a3b8;
--glass-border: rgba(255, 255, 255, 0.08);
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-dark);
color: var(--text-main);
overflow-x: hidden;
scroll-behavior: smooth;
}
h1, h2, h3, h4, .font-heading {
font-family: 'Outfit', sans-serif;
letter-spacing: -0.02em;
}
/* Animated Mesh Background */
.mesh-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
overflow: hidden;
background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
}
.mesh-blob {
position: absolute;
width: 600px;
height: 600px;
border-radius: 50%;
filter: blur(120px);
opacity: 0.15;
animation: meshFloat 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}
.blob-1 { background: #3b82f6; top: -10%; left: -10%; }
.blob-2 { background: #8b5cf6; bottom: -10%; right: -10%; animation-delay: -5s; }
.blob-3 { background: #0ea5e9; top: 40%; left: 30%; animation-delay: -10s; }
@keyframes meshFloat {
0% { transform: translate(0, 0) scale(1); }
100% { transform: translate(100px, 50px) scale(1.1); }
}
/* Glassmorphism Navigation */
.navbar {
background: rgba(2, 6, 23, 0.7);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--glass-border);
padding: 1.5rem 0;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-brand {
font-weight: 900;
font-size: 1.5rem;
background: linear-gradient(135deg, #fff 0%, #3b82f6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Hero Styling */
.hero-section {
padding: 220px 0 120px;
position: relative;
}
.badge-premium {
background: rgba(59, 130, 246, 0.1);
border: 1px solid rgba(59, 130, 246, 0.2);
padding: 8px 16px;
border-radius: 100px;
color: var(--primary);
font-size: 0.75rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 2rem;
display: inline-block;
}
.hero-title {
font-size: clamp(3rem, 8vw, 5rem);
font-weight: 900;
line-height: 0.95;
margin-bottom: 1.5rem;
background: linear-gradient(to bottom right, #fff 40%, #64748b 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-desc {
font-size: 1.25rem;
color: var(--text-dim);
max-width: 600px;
margin-bottom: 3rem;
}
/* Premium Buttons */
.btn-luxury {
padding: 16px 40px;
border-radius: 16px;
font-weight: 700;
font-size: 1rem;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
display: inline-flex;
align-items: center;
gap: 12px;
position: relative;
overflow: hidden;
}
.btn-luxury-primary {
background: var(--primary);
color: white;
border: none;
box-shadow: 0 10px 30px var(--primary-glow);
}
.btn-luxury-primary:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px var(--primary-glow);
color: white;
}
.btn-luxury-outline {
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--glass-border);
color: white;
}
.btn-luxury-outline:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255,255,255,0.2);
color: white;
}
/* Stats Section */
.stats-card {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 24px;
padding: 2rem;
text-align: center;
backdrop-filter: blur(10px);
}
.stat-num {
font-size: 2.5rem;
font-weight: 900;
color: white;
margin-bottom: 0.5rem;
}
.stat-label {
color: var(--text-dim);
font-size: 0.875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
}
/* Workflow Section */
.workflow-step {
position: relative;
padding: 3rem;
background: rgba(15, 23, 42, 0.4);
border: 1px solid var(--glass-border);
border-radius: 32px;
transition: all 0.4s ease;
}
.workflow-step:hover {
background: rgba(30, 41, 59, 0.6);
border-color: var(--primary);
transform: translateY(-8px);
}
.step-count {
width: 40px;
height: 40px;
background: var(--primary);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
margin-bottom: 1.5rem;
}
/* Footer */
footer {
padding: 80px 0 40px;
border-top: 1px solid var(--glass-border);
background: rgba(2, 6, 23, 0.5);
}
.footer-logo {
font-weight: 900;
font-size: 1.5rem;
margin-bottom: 1.5rem;
display: block;
}
.footer-link {
color: var(--text-dim);
transition: 0.3s;
display: block;
margin-bottom: 0.75rem;
font-size: 0.95rem;
}
.footer-link:hover {
color: var(--primary);
padding-left: 5px;
}
/* Mockup Glass */
.dashboard-preview {
position: relative;
perspective: 2000px;
}
.mockup-main {
background: rgba(30, 41, 59, 0.7);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 2.5rem;
backdrop-filter: blur(40px);
box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
transform: rotateY(-15deg) rotateX(10deg);
transition: transform 0.8s cubic-bezier(0.2, 0, 0, 1);
}
.mockup-main:hover {
transform: rotateY(-5deg) rotateX(3deg);
}
@media (max-width: 991px) {
.hero-section { padding: 180px 0 80px; text-align: center; }
.hero-desc { margin: 0 auto 3rem; }
.hero-btns { justify-content: center; }
.mockup-main { transform: none; margin-top: 4rem; }
}
</style>
</head>
<body>
<div class="mesh-bg">
<div class="mesh-blob blob-1"></div>
<div class="mesh-blob blob-2"></div>
<div class="mesh-blob blob-3"></div>
</div>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container">
<a class="navbar-brand" href="#">SkillPath <span style="color: var(--primary);">AI</span></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<i class="bi bi-list text-white"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto align-items-center">
<li class="nav-item"><a class="nav-link text-white mx-3 fw-semibold" href="#workflow">Workflow</a></li>
<li class="nav-item"><a class="nav-link text-white mx-3 fw-semibold" href="#stats">Stats</a></li>
<li class="nav-item"><a class="nav-link text-white mx-3 fw-semibold" href="login.php">Log In</a></li>
<li class="nav-item">
<a class="btn-luxury btn-luxury-primary ms-lg-4 py-2 px-4" href="register.php">Get Started</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-section">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7 animate__animated animate__fadeInUp">
<span class="badge-premium">Intelligent Career Recommendation Engine</span>
<h1 class="hero-title">Precision Career <br>Mapping & Analysis.</h1>
<p class="hero-desc">Elevate your technical journey with AI-driven insights. We analyze your core competencies to match you with top-tier IT career paths using ITEE industry standards.</p>
<div class="hero-btns d-flex flex-sm-row flex-column gap-3">
<a href="register.php" class="btn-luxury btn-luxury-primary">
Begin Assessment <i class="bi bi-chevron-right"></i>
</a>
<a href="#workflow" class="btn-luxury btn-luxury-outline">How it works</a>
</div>
</div>
<div class="col-lg-5 animate__animated animate__fadeInRight">
<div class="dashboard-preview mt-5 mt-lg-0">
<div class="mockup-main">
<div class="mb-5 d-flex gap-2">
<div style="width: 12px; height: 12px; border-radius: 50%; background: #ff5f56;"></div>
<div style="width: 12px; height: 12px; border-radius: 50%; background: #ffbd2e;"></div>
<div style="width: 12px; height: 12px; border-radius: 50%; background: #27c93f;"></div>
</div>
<h4 class="mb-4">Competency Radar</h4>
<div class="mb-4">
<div class="d-flex justify-content-between mb-2">
<span style="font-size: 0.9rem; opacity: 0.7;">Software Engineering</span>
<span style="font-size: 0.9rem; font-weight: 700; color: #10b981;">Strong</span>
</div>
<div class="progress" style="height: 4px; background: rgba(255,255,255,0.05);">
<div class="progress-bar" style="width: 92%; background: #10b981;"></div>
</div>
</div>
<div class="mb-5">
<div class="d-flex justify-content-between mb-2">
<span style="font-size: 0.9rem; opacity: 0.7;">System Architecture</span>
<span style="font-size: 0.9rem; font-weight: 700; color: var(--primary);">Developing</span>
</div>
<div class="progress" style="height: 4px; background: rgba(255,255,255,0.05);">
<div class="progress-bar bg-primary" style="width: 65%;"></div>
</div>
</div>
<div class="p-4 rounded-4" style="background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2);">
<div class="d-flex align-items-center gap-2 mb-2">
<i class="bi bi-robot text-primary"></i>
<span style="font-size: 0.75rem; font-weight: 800; text-transform: uppercase;">AI Prediction</span>
</div>
<p class="m-0" style="font-size: 0.875rem; line-height: 1.4;">Based on current scores, you are 94% matched for **Senior DevOps Engineer** roles.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Stats Section -->
<section id="stats" class="py-5">
<div class="container">
<div class="row g-4 justify-content-center">
<div class="col-lg-3 col-6">
<div class="stats-card">
<div class="stat-num">500+</div>
<div class="stat-label">Students Analyzed</div>
</div>
</div>
<div class="col-lg-3 col-6">
<div class="stats-card border-primary" style="border-width: 2px;">
<div class="stat-num text-primary">98%</div>
<div class="stat-label">Matching Accuracy</div>
</div>
</div>
<div class="col-lg-3 col-6">
<div class="stats-card">
<div class="stat-num">120+</div>
<div class="stat-label">Career Paths</div>
</div>
</div>
<div class="col-lg-3 col-6">
<div class="stats-card">
<div class="stat-num">1.5k+</div>
<div class="stat-label">Skills Mapped</div>
</div>
</div>
</div>
</div>
</section>
<!-- Workflow Section -->
<section id="workflow" class="py-5 mt-5">
<div class="container py-5">
<div class="row mb-5 text-center">
<div class="col-lg-6 mx-auto">
<h2 class="display-5 fw-bold mb-3">How AI Shapes Your Future</h2>
<p class="text-secondary">Our multi-stage analysis engine processes your data to deliver laboratory-grade precision in career recommendations.</p>
</div>
</div>
<div class="row g-4 mt-4">
<div class="col-lg-4">
<div class="workflow-step">
<div class="step-count">01</div>
<h3>Deep Skill Audit</h3>
<p class="text-dim">Our assessment modules capture both hard skills and cognitive capabilities tailored for the tech industry.</p>
</div>
</div>
<div class="col-lg-4">
<div class="workflow-step" style="border-bottom: 4px solid var(--primary);">
<div class="step-count">02</div>
<h3>Domain Analysis</h3>
<p class="text-dim">AI clusters your expertise into domains (Frontend, Data, AI, Security) to find your natural technical gravity.</p>
</div>
</div>
<div class="col-lg-4">
<div class="workflow-step">
<div class="step-count">03</div>
<h3>Career Matching</h3>
<p class="text-dim">Receive high-resolution career paths with gap analysis and recommended learning steps for industry readiness.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Detailed Footer -->
<footer>
<div class="container text-md-start text-center">
<div class="row gy-5">
<div class="col-lg-4">
<a class="footer-logo text-white" href="#">SkillPath <span class="text-primary">AI</span></a>
<p class="text-dim pe-lg-5">Empowering next-generation IT professionals with high-fidelity career pathing powered by artificial intelligence.</p>
<div class="d-flex gap-3 justify-content-md-start justify-content-center mt-4">
<a href="#" class="text-dim fs-5"><i class="bi bi-linkedin"></i></a>
<a href="#" class="text-dim fs-5"><i class="bi bi-github"></i></a>
<a href="#" class="text-dim fs-5"><i class="bi bi-twitter-x"></i></a>
</div>
</div>
<div class="col-lg-2 ms-lg-auto">
<h6 class="text-white fw-bold mb-4">Platform</h6>
<a href="#" class="footer-link">Assessment</a>
<a href="#" class="footer-link">AI Dashboard</a>
<a href="#" class="footer-link">Integrations</a>
<a href="#" class="footer-link">Pricing</a>
</div>
<div class="col-lg-2">
<h6 class="text-white fw-bold mb-4">Company</h6>
<a href="#" class="footer-link">About Us</a>
<a href="#" class="footer-link">Careers</a>
<a href="#" class="footer-link">Blog</a>
<a href="#" class="footer-link">Partners</a>
</div>
<div class="col-lg-2">
<h6 class="text-white fw-bold mb-4">Legal</h6>
<a href="#" class="footer-link">Privacy Policy</a>
<a href="#" class="footer-link">Terms of Service</a>
<a href="#" class="footer-link">Cookie Policy</a>
</div>
</div>
<div class="mt-5 pt-4 border-top border-secondary border-opacity-10 d-flex flex-column flex-md-row justify-content-between align-items-center">
<p class="text-dim small m-0">© 2026 SkillPath AI Team. Built with precision for top-tier talent.</p>
<div class="mt-3 mt-md-0">
<span class="text-dim small">Locale: ID (Indonesia)</span>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>