Spaces:
Running
Running
File size: 46,512 Bytes
363167d |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intern HRMS - Group Management System</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'dark-purple': '#6b21a8',
'bright-purple': '#a855f7',
'jet-black': '#0a0a0a',
'dark-gray': '#1f1f1f',
'light-gray': '#2d2d2d'
}
}
}
}
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #6b21a8 0%, #0a0a0a 100%);
}
.sidebar-item:hover {
background-color: rgba(168, 85, 247, 0.2);
transform: translateX(5px);
transition: all 0.3s ease;
}
.task-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
transition: all 0.3s ease;
}
.progress-ring__circle {
transition: stroke-dashoffset 0.35s;
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
.animate-pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
body {
background-color: #0a0a0a;
color: #e5e7eb;
}
.card-bg {
background-color: #1f1f1f;
border: 1px solid #2d2d2d;
}
.table-header {
background-color: #6b21a8;
}
.table-row:hover {
background-color: rgba(168, 85, 247, 0.1);
}
.glow-purple {
box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}
</style>
</head>
<body class="font-sans">
<div class="flex h-screen overflow-hidden">
<!-- Sidebar -->
<div class="hidden md:flex md:flex-shrink-0">
<div class="flex flex-col w-64 gradient-bg text-white">
<div class="flex items-center justify-center h-16 px-4 border-b border-purple-500 border-opacity-20">
<div class="flex items-center">
<i class="fas fa-users-cog text-2xl mr-2 text-bright-purple"></i>
<span class="text-xl font-semibold">Intern HRMS</span>
</div>
</div>
<div class="flex flex-col flex-grow px-4 py-4 overflow-y-auto">
<div class="space-y-1">
<a href="#" class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-white bg-purple-900 bg-opacity-30">
<i class="fas fa-tachometer-alt mr-3 text-bright-purple"></i>
Dashboard
</a>
<a href="#" class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-white hover:bg-purple-900 hover:bg-opacity-30">
<i class="fas fa-tasks mr-3 text-bright-purple"></i>
Task Management
</a>
<a href="#" class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-white hover:bg-purple-900 hover:bg-opacity-30">
<i class="fas fa-users mr-3 text-bright-purple"></i>
Intern Groups
</a>
<a href="#" class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-white hover:bg-purple-900 hover:bg-opacity-30">
<i class="fas fa-file-upload mr-3 text-bright-purple"></i>
Submissions
</a>
<a href="#" class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-white hover:bg-purple-900 hover:bg-opacity-30">
<i class="fas fa-star mr-3 text-bright-purple"></i>
Scoring System
</a>
<a href="#" class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-white hover:bg-purple-900 hover:bg-opacity-30">
<i class="fas fa-chart-line mr-3 text-bright-purple"></i>
Analytics
</a>
<a href="#" class="sidebar-item flex items-center px-2 py-3 text-sm font-medium rounded-md text-white hover:bg-purple-900 hover:bg-opacity-30">
<i class="fas fa-cog mr-3 text-bright-purple"></i>
Settings
</a>
</div>
<div class="mt-auto mb-4">
<div class="bg-purple-900 bg-opacity-30 p-3 rounded-lg glow-purple">
<div class="flex items-center">
<img class="h-10 w-10 rounded-full border-2 border-bright-purple" src="https://randomuser.me/api/portraits/women/44.jpg" alt="User">
<div class="ml-3">
<p class="text-sm font-medium text-white">HR Coordinator</p>
<p class="text-xs text-purple-300">[email protected]</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="flex flex-col flex-1 overflow-hidden">
<!-- Top Navigation -->
<div class="flex items-center justify-between h-16 px-4 bg-dark-gray border-b border-purple-900">
<div class="flex items-center">
<button class="md:hidden text-bright-purple focus:outline-none">
<i class="fas fa-bars"></i>
</button>
<h1 class="ml-4 text-lg font-semibold text-white">Intern Management Dashboard</h1>
</div>
<div class="flex items-center space-x-4">
<div class="relative">
<button class="text-bright-purple focus:outline-none hover:text-white">
<i class="fas fa-bell"></i>
<span class="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500"></span>
</button>
</div>
<div class="relative">
<button class="flex items-center text-bright-purple focus:outline-none hover:text-white">
<img class="h-8 w-8 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/women/44.jpg" alt="User">
<span class="ml-2 text-sm font-medium">HR Admin</span>
</button>
</div>
</div>
</div>
<!-- Main Content Area -->
<div class="flex-1 overflow-auto p-6">
<!-- Stats Cards -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-6">
<div class="card-bg rounded-lg shadow p-6 glow-purple">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-purple-300">Total Interns</p>
<p class="mt-1 text-3xl font-semibold text-white">1,000</p>
</div>
<div class="p-3 rounded-full bg-purple-900 text-bright-purple">
<i class="fas fa-users text-xl"></i>
</div>
</div>
</div>
<div class="card-bg rounded-lg shadow p-6 glow-purple">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-purple-300">HR Groups</p>
<p class="mt-1 text-3xl font-semibold text-white">18</p>
</div>
<div class="p-3 rounded-full bg-purple-900 text-bright-purple">
<i class="fas fa-layer-group text-xl"></i>
</div>
</div>
</div>
<div class="card-bg rounded-lg shadow p-6 glow-purple">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-purple-300">Active Tasks</p>
<p class="mt-1 text-3xl font-semibold text-white">36</p>
</div>
<div class="p-3 rounded-full bg-purple-900 text-bright-purple">
<i class="fas fa-tasks text-xl"></i>
</div>
</div>
</div>
<div class="card-bg rounded-lg shadow p-6 glow-purple">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-purple-300">Submissions Due</p>
<p class="mt-1 text-3xl font-semibold text-white">124</p>
</div>
<div class="p-3 rounded-full bg-purple-900 text-bright-purple">
<i class="fas fa-file-upload text-xl"></i>
</div>
</div>
</div>
</div>
<!-- Weekly Task Assignment Section -->
<div class="card-bg rounded-lg shadow mb-6 glow-purple">
<div class="px-6 py-4 border-b border-purple-900">
<h2 class="text-lg font-semibold text-white">Weekly Task Assignment</h2>
</div>
<div class="p-6">
<div class="mb-4">
<label class="block text-sm font-medium text-purple-300 mb-2">Select HR Group</label>
<select class="mt-1 block w-full pl-3 pr-10 py-2 text-base bg-dark-gray border-purple-900 focus:outline-none focus:ring-bright-purple focus:border-bright-purple sm:text-sm rounded-md text-white">
<option class="bg-dark-gray">All Groups (1-18)</option>
<option class="bg-dark-gray">Group 1 (HR: Alice)</option>
<option class="bg-dark-gray">Group 2 (HR: Bob)</option>
<option class="bg-dark-gray">Group 3 (HR: Charlie)</option>
</select>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-purple-300 mb-2">Task Title</label>
<input type="text" class="mt-1 focus:ring-bright-purple focus:border-bright-purple block w-full shadow-sm sm:text-sm bg-dark-gray border-purple-900 rounded-md text-white" placeholder="Enter task title">
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-purple-300 mb-2">Task Description</label>
<textarea rows="4" class="mt-1 focus:ring-bright-purple focus:border-bright-purple block w-full shadow-sm sm:text-sm bg-dark-gray border-purple-900 rounded-md text-white" placeholder="Provide detailed instructions for the task"></textarea>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-4">
<div>
<label class="block text-sm font-medium text-purple-300 mb-2">Start Date</label>
<input type="date" class="mt-1 focus:ring-bright-purple focus:border-bright-purple block w-full shadow-sm sm:text-sm bg-dark-gray border-purple-900 rounded-md text-white">
</div>
<div>
<label class="block text-sm font-medium text-purple-300 mb-2">Due Date</label>
<input type="date" class="mt-1 focus:ring-bright-purple focus:border-bright-purple block w-full shadow-sm sm:text-sm bg-dark-gray border-purple-900 rounded-md text-white">
</div>
<div>
<label class="block text-sm font-medium text-purple-300 mb-2">Max Points</label>
<input type="number" class="mt-1 focus:ring-bright-purple focus:border-bright-purple block w-full shadow-sm sm:text-sm bg-dark-gray border-purple-900 rounded-md text-white" placeholder="100">
</div>
</div>
<div class="flex justify-end">
<button type="button" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-bright-purple hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500">
<i class="fas fa-paper-plane mr-2"></i> Assign Task
</button>
</div>
</div>
</div>
<!-- Current Tasks & Groups Section -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<!-- Active Tasks -->
<div class="card-bg rounded-lg shadow glow-purple">
<div class="px-6 py-4 border-b border-purple-900">
<h2 class="text-lg font-semibold text-white">Active Tasks This Week</h2>
</div>
<div class="p-4">
<div class="space-y-4">
<!-- Task Card 1 -->
<div class="task-card bg-dark-gray border border-purple-900 rounded-lg p-4 shadow-sm">
<div class="flex justify-between items-start">
<div>
<h3 class="font-medium text-white">Market Research Analysis</h3>
<p class="text-sm text-purple-300 mt-1">Group 1-5, 7, 9</p>
</div>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-900 text-green-300">
Active
</span>
</div>
<p class="text-sm text-gray-400 mt-2">Conduct market research on emerging trends in your assigned sector and prepare a 5-page report with analysis.</p>
<div class="mt-3 flex items-center justify-between">
<div class="flex items-center text-sm text-purple-300">
<i class="far fa-calendar-alt mr-1"></i>
<span>Due: May 15, 2023</span>
</div>
<span class="text-sm font-medium text-bright-purple">Max: 100 pts</span>
</div>
<div class="mt-3">
<div class="flex justify-between text-sm text-purple-300 mb-1">
<span>Submissions: 45/56</span>
<span>80%</span>
</div>
<div class="w-full bg-purple-900 rounded-full h-2">
<div class="bg-bright-purple h-2 rounded-full" style="width: 80%"></div>
</div>
</div>
</div>
<!-- Task Card 2 -->
<div class="task-card bg-dark-gray border border-purple-900 rounded-lg p-4 shadow-sm">
<div class="flex justify-between items-start">
<div>
<h3 class="font-medium text-white">UI/UX Design Project</h3>
<p class="text-sm text-purple-300 mt-1">Group 6, 8, 10-12</p>
</div>
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-900 text-green-300">
Active
</span>
</div>
<p class="text-sm text-gray-400 mt-2">Design a mobile app interface for a food delivery service. Include wireframes and a style guide.</p>
<div class="mt-3 flex items-center justify-between">
<div class="flex items-center text-sm text-purple-300">
<i class="far fa-calendar-alt mr-1"></i>
<span>Due: May 17, 2023</span>
</div>
<span class="text-sm font-medium text-bright-purple">Max: 150 pts</span>
</div>
<div class="mt-3">
<div class="flex justify-between text-sm text-purple-300 mb-1">
<span>Submissions: 28/72</span>
<span>39%</span>
</div>
<div class="w-full bg-purple-900 rounded-full h-2">
<div class="bg-bright-purple h-2 rounded-full" style="width: 39%"></div>
</div>
</div>
</div>
</div>
<div class="mt-4 text-center">
<button class="text-bright-purple hover:text-white text-sm font-medium">
View All Tasks <i class="fas fa-chevron-right ml-1"></i>
</button>
</div>
</div>
</div>
<!-- HR Groups Overview -->
<div class="card-bg rounded-lg shadow glow-purple">
<div class="px-6 py-4 border-b border-purple-900">
<h2 class="text-lg font-semibold text-white">HR Groups Overview</h2>
</div>
<div class="p-4">
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
<!-- Group 1 -->
<div class="border border-purple-900 rounded-lg p-4 hover:border-bright-purple transition-colors bg-dark-gray">
<div class="flex items-center justify-between">
<h3 class="font-medium text-white">Group 1</h3>
<span class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-purple-900 text-bright-purple">
56 interns
</span>
</div>
<p class="text-sm text-purple-300 mt-1">HR: Alice Johnson</p>
<div class="mt-3 flex items-center">
<div class="flex-shrink-0">
<img class="h-8 w-8 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/women/12.jpg" alt="HR">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-white">Alice Johnson</p>
<p class="text-sm text-purple-300">[email protected]</p>
</div>
</div>
<div class="mt-3">
<div class="flex justify-between text-sm text-purple-300">
<span>Active Tasks: 3</span>
<span>Avg Score: 82%</span>
</div>
</div>
</div>
<!-- Group 2 -->
<div class="border border-purple-900 rounded-lg p-4 hover:border-bright-purple transition-colors bg-dark-gray">
<div class="flex items-center justify-between">
<h3 class="font-medium text-white">Group 2</h3>
<span class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-purple-900 text-bright-purple">
58 interns
</span>
</div>
<p class="text-sm text-purple-300 mt-1">HR: Bob Smith</p>
<div class="mt-3 flex items-center">
<div class="flex-shrink-0">
<img class="h-8 w-8 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/men/32.jpg" alt="HR">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-white">Bob Smith</p>
<p class="text-sm text-purple-300">[email protected]</p>
</div>
</div>
<div class="mt-3">
<div class="flex justify-between text-sm text-purple-300">
<span>Active Tasks: 2</span>
<span>Avg Score: 76%</span>
</div>
</div>
</div>
<!-- Group 3 -->
<div class="border border-purple-900 rounded-lg p-4 hover:border-bright-purple transition-colors bg-dark-gray">
<div class="flex items-center justify-between">
<h3 class="font-medium text-white">Group 3</h3>
<span class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-purple-900 text-bright-purple">
55 interns
</span>
</div>
<p class="text-sm text-purple-300 mt-1">HR: Charlie Brown</p>
<div class="mt-3 flex items-center">
<div class="flex-shrink-0">
<img class="h-8 w-8 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/men/44.jpg" alt="HR">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-white">Charlie Brown</p>
<p class="text-sm text-purple-300">[email protected]</p>
</div>
</div>
<div class="mt-3">
<div class="flex justify-between text-sm text-purple-300">
<span>Active Tasks: 4</span>
<span>Avg Score: 88%</span>
</div>
</div>
</div>
<!-- Group 4 -->
<div class="border border-purple-900 rounded-lg p-4 hover:border-bright-purple transition-colors bg-dark-gray">
<div class="flex items-center justify-between">
<h3 class="font-medium text-white">Group 4</h3>
<span class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-purple-900 text-bright-purple">
52 interns
</span>
</div>
<p class="text-sm text-purple-300 mt-1">HR: Diana Prince</p>
<div class="mt-3 flex items-center">
<div class="flex-shrink-0">
<img class="h-8 w-8 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/women/33.jpg" alt="HR">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-white">Diana Prince</p>
<p class="text-sm text-purple-300">[email protected]</p>
</div>
</div>
<div class="mt-3">
<div class="flex justify-between text-sm text-purple-300">
<span>Active Tasks: 3</span>
<span>Avg Score: 91%</span>
</div>
</div>
</div>
</div>
<div class="mt-4 text-center">
<button class="text-bright-purple hover:text-white text-sm font-medium">
View All Groups <i class="fas fa-chevron-right ml-1"></i>
</button>
</div>
</div>
</div>
</div>
<!-- Recent Submissions & Scoring Section -->
<div class="mt-6 grid grid-cols-1 lg:grid-cols-2 gap-6">
<!-- Recent Submissions -->
<div class="card-bg rounded-lg shadow glow-purple">
<div class="px-6 py-4 border-b border-purple-900">
<h2 class="text-lg font-semibold text-white">Recent Submissions</h2>
</div>
<div class="p-4">
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-purple-900">
<thead class="table-header">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-white uppercase tracking-wider">Intern</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-white uppercase tracking-wider">Task</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-white uppercase tracking-wider">Group</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-white uppercase tracking-wider">Status</th>
</tr>
</thead>
<tbody class="bg-dark-gray divide-y divide-purple-900">
<tr class="table-row">
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="flex-shrink-0 h-10 w-10">
<img class="h-10 w-10 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/women/21.jpg" alt="">
</div>
<div class="ml-4">
<div class="text-sm font-medium text-white">Sarah Connor</div>
<div class="text-sm text-purple-300">[email protected]</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-white">Market Research</div>
<div class="text-sm text-purple-300">Due: May 15</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-900 text-bright-purple">
Group 1
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-900 text-green-300">
Submitted
</span>
</td>
</tr>
<tr class="table-row">
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="flex-shrink-0 h-10 w-10">
<img class="h-10 w-10 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/men/19.jpg" alt="">
</div>
<div class="ml-4">
<div class="text-sm font-medium text-white">John Doe</div>
<div class="text-sm text-purple-300">[email protected]</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-white">UI/UX Design</div>
<div class="text-sm text-purple-300">Due: May 17</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-900 text-bright-purple">
Group 6
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-900 text-yellow-300">
Pending Review
</span>
</td>
</tr>
<tr class="table-row">
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="flex-shrink-0 h-10 w-10">
<img class="h-10 w-10 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/women/47.jpg" alt="">
</div>
<div class="ml-4">
<div class="text-sm font-medium text-white">Emma Watson</div>
<div class="text-sm text-purple-300">[email protected]</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-white">Content Writing</div>
<div class="text-sm text-purple-300">Due: May 14</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-900 text-bright-purple">
Group 3
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-900 text-blue-300">
Graded (85/100)
</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-4 text-center">
<button class="text-bright-purple hover:text-white text-sm font-medium">
View All Submissions <i class="fas fa-chevron-right ml-1"></i>
</button>
</div>
</div>
</div>
<!-- Scoring Dashboard -->
<div class="card-bg rounded-lg shadow glow-purple">
<div class="px-6 py-4 border-b border-purple-900">
<h2 class="text-lg font-semibold text-white">Scoring Dashboard</h2>
</div>
<div class="p-6">
<div class="mb-6">
<h3 class="text-md font-medium text-white mb-3">Overall Performance</h3>
<div class="grid grid-cols-3 gap-4">
<div class="text-center">
<div class="mx-auto relative w-20 h-20">
<svg class="w-full h-full" viewBox="0 0 36 36">
<path class="text-purple-900" d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831" fill="none" stroke-width="3" stroke="currentColor"/>
<path class="text-green-500 progress-ring__circle" stroke-dasharray="85, 100" d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831" fill="none" stroke-width="3" stroke="currentColor"/>
<text x="18" y="20.5" class="text-sm font-medium text-white" text-anchor="middle" dy=".3em">85%</text>
</svg>
</div>
<p class="mt-2 text-sm text-purple-300">Completion Rate</p>
</div>
<div class="text-center">
<div class="mx-auto relative w-20 h-20">
<svg class="w-full h-full" viewBox="0 0 36 36">
<path class="text-purple-900" d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831" fill="none" stroke-width="3" stroke="currentColor"/>
<path class="text-bright-purple progress-ring__circle" stroke-dasharray="78, 100" d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831" fill="none" stroke-width="3" stroke="currentColor"/>
<text x="18" y="20.5" class="text-sm font-medium text-white" text-anchor="middle" dy=".3em">78%</text>
</svg>
</div>
<p class="mt-2 text-sm text-purple-300">Average Score</p>
</div>
<div class="text-center">
<div class="mx-auto relative w-20 h-20">
<svg class="w-full h-full" viewBox="0 0 36 36">
<path class="text-purple-900" d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831" fill="none" stroke-width="3" stroke="currentColor"/>
<path class="text-purple-500 progress-ring__circle" stroke-dasharray="92, 100" d="M18 2.0845
a 15.9155 15.9155 0 0 1 0 31.831
a 15.9155 15.9155 0 0 1 0 -31.831" fill="none" stroke-width="3" stroke="currentColor"/>
<text x="18" y="20.5" class="text-sm font-medium text-white" text-anchor="middle" dy=".3em">92%</text>
</svg>
</div>
<p class="mt-2 text-sm text-purple-300">On-time Submission</p>
</div>
</div>
</div>
<div>
<h3 class="text-md font-medium text-white mb-3">Top Performers</h3>
<div class="space-y-3">
<div class="flex items-center justify-between p-3 bg-purple-900 rounded-lg glow-purple">
<div class="flex items-center">
<img class="h-10 w-10 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/women/22.jpg" alt="Top performer">
<div class="ml-3">
<p class="text-sm font-medium text-white">Lisa Ray</p>
<p class="text-sm text-purple-300">Group 4</p>
</div>
</div>
<span class="px-2 py-1 text-xs font-semibold rounded-full bg-green-900 text-green-300">
98% Avg
</span>
</div>
<div class="flex items-center justify-between p-3 bg-purple-900 rounded-lg glow-purple">
<div class="flex items-center">
<img class="h-10 w-10 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/men/41.jpg" alt="Top performer">
<div class="ml-3">
<p class="text-sm font-medium text-white">Michael Scott</p>
<p class="text-sm text-purple-300">Group 7</p>
</div>
</div>
<span class="px-2 py-1 text-xs font-semibold rounded-full bg-green-900 text-green-300">
96% Avg
</span>
</div>
<div class="flex items-center justify-between p-3 bg-purple-900 rounded-lg glow-purple">
<div class="flex items-center">
<img class="h-10 w-10 rounded-full border border-bright-purple" src="https://randomuser.me/api/portraits/women/35.jpg" alt="Top performer">
<div class="ml-3">
<p class="text-sm font-medium text-white">Sarah Parker</p>
<div class="flex items-center">
<p class="text-sm text-purple-300">Group 2</p>
<span class="ml-2 px-1 py-0.5 text-xs rounded-full bg-yellow-900 text-yellow-300 animate-pulse">New</span>
</div>
</div>
</div>
<span class="px-2 py-1 text-xs font-semibold rounded-full bg-green-900 text-green-300">
95% Avg
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Mobile menu toggle would go here
// Data fetching and dynamic content updates would go here
// Example: Simulate loading data
setTimeout(() => {
const loadingElements = document.querySelectorAll('.animate-pulse');
loadingElements.forEach(el => el.classList.remove('animate-pulse'));
}, 2000);
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=uiforgenzbitches/testing-her" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |