File size: 37,165 Bytes
2801a1c |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GRE-Style Online Examination System</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Custom CSS */
.sidebar {
transition: all 0.3s ease;
}
.sidebar.collapsed {
width: 70px;
}
.sidebar.collapsed .sidebar-text {
display: none;
}
.sidebar.collapsed .nav-item {
justify-content: center;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
.question-image {
max-height: 300px;
max-width: 100%;
}
.option-image {
max-height: 150px;
max-width: 100%;
}
.fullscreen-exam {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: white;
z-index: 1000;
overflow-y: auto;
}
.cheating-alert {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}
.progress-ring__circle {
transition: stroke-dashoffset 0.35s;
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Main Container -->
<div class="flex h-screen" id="main-container">
<!-- Sidebar Navigation -->
<div class="sidebar bg-blue-800 text-white w-64 flex flex-col" id="sidebar">
<div class="p-4 flex items-center justify-between border-b border-blue-700">
<div class="flex items-center">
<i class="fas fa-graduation-cap text-2xl mr-3"></i>
<span class="sidebar-text font-bold text-xl">ExamPro</span>
</div>
<button id="toggle-sidebar" class="text-white focus:outline-none">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="flex-1 overflow-y-auto">
<!-- User Profile -->
<div class="p-4 flex items-center border-b border-blue-700">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User" class="w-10 h-10 rounded-full mr-3">
<div class="sidebar-text">
<div class="font-medium" id="username-display">John Doe</div>
<div class="text-xs text-blue-200" id="user-role-display">Student</div>
</div>
</div>
<!-- Navigation Menu -->
<nav class="mt-4">
<div class="px-4 mb-4">
<div class="text-xs uppercase font-bold text-blue-300 mb-2 sidebar-text">Main Menu</div>
</div>
<ul>
<li>
<a href="#" class="nav-item flex items-center px-4 py-3 text-blue-100 hover:bg-blue-700" data-tab="dashboard">
<i class="fas fa-tachometer-alt mr-3"></i>
<span class="sidebar-text">Dashboard</span>
</a>
</li>
<li>
<a href="#" class="nav-item flex items-center px-4 py-3 text-blue-100 hover:bg-blue-700" data-tab="practice">
<i class="fas fa-book-reader mr-3"></i>
<span class="sidebar-text">Practice Tests</span>
</a>
</li>
<li>
<a href="#" class="nav-item flex items-center px-4 py-3 text-blue-100 hover:bg-blue-700" data-tab="exams">
<i class="fas fa-file-alt mr-3"></i>
<span class="sidebar-text">Exams</span>
</a>
</li>
<li id="admin-menu" class="hidden">
<a href="#" class="nav-item flex items-center px-4 py-3 text-blue-100 hover:bg-blue-700" data-tab="admin">
<i class="fas fa-user-shield mr-3"></i>
<span class="sidebar-text">Admin Panel</span>
</a>
</li>
<li id="teacher-menu" class="hidden">
<a href="#" class="nav-item flex items-center px-4 py-3 text-blue-100 hover:bg-blue-700" data-tab="teacher">
<i class="fas fa-chalkboard-teacher mr-3"></i>
<span class="sidebar-text">Teacher Panel</span>
</a>
</li>
</ul>
</nav>
</div>
<div class="p-4 border-t border-blue-700">
<a href="#" class="nav-item flex items-center text-blue-100 hover:text-white" id="logout-btn">
<i class="fas fa-sign-out-alt mr-3"></i>
<span class="sidebar-text">Logout</span>
</a>
</div>
</div>
<!-- Main Content Area -->
<div class="flex-1 overflow-y-auto">
<!-- Top Navigation -->
<header class="bg-white shadow-sm">
<div class="flex justify-between items-center px-6 py-4">
<div>
<h1 class="text-xl font-semibold text-gray-800" id="page-title">Dashboard</h1>
</div>
<div class="flex items-center space-x-4">
<div class="relative">
<button id="notifications-btn" class="text-gray-500 hover:text-gray-700 focus:outline-none">
<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 id="notifications-dropdown" class="hidden absolute right-0 mt-2 w-64 bg-white rounded-md shadow-lg z-10">
<div class="p-4 border-b">
<h3 class="font-medium">Notifications</h3>
</div>
<div class="max-h-60 overflow-y-auto">
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">New exam scheduled for Friday</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Your practice test results are ready</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">System maintenance scheduled</a>
</div>
</div>
</div>
<div class="relative">
<button id="user-menu-btn" class="flex items-center focus:outline-none">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User" class="w-8 h-8 rounded-full">
<span class="ml-2 text-sm font-medium hidden md:inline">John Doe</span>
</button>
<div id="user-menu-dropdown" class="hidden absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg z-10">
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Profile</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Settings</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 border-t">Logout</a>
</div>
</div>
</div>
</div>
</header>
<!-- Content Sections -->
<main class="p-6">
<!-- Dashboard Tab -->
<div class="tab-content active" id="dashboard-tab">
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-6">
<div class="bg-white rounded-lg shadow p-6">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500">Upcoming Exams</p>
<h3 class="text-2xl font-bold mt-2">3</h3>
</div>
<div class="bg-blue-100 p-3 rounded-full">
<i class="fas fa-calendar-alt text-blue-600"></i>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-6">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500">Practice Tests Taken</p>
<h3 class="text-2xl font-bold mt-2">12</h3>
</div>
<div class="bg-green-100 p-3 rounded-full">
<i class="fas fa-book text-green-600"></i>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-6">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500">Average Score</p>
<h3 class="text-2xl font-bold mt-2">78%</h3>
</div>
<div class="bg-purple-100 p-3 rounded-full">
<i class="fas fa-chart-line text-purple-600"></i>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-6 mb-6">
<div class="flex justify-between items-center mb-4">
<h2 class="text-lg font-semibold">Recent Activity</h2>
<a href="#" class="text-sm text-blue-600 hover:underline">View All</a>
</div>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-3">
<i class="fas fa-file-alt text-blue-600 text-sm"></i>
</div>
<div>
<p class="text-sm font-medium">Completed Quantitative Practice Test</p>
<p class="text-xs text-gray-500">2 hours ago - Score: 85%</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-3">
<i class="fas fa-book text-green-600 text-sm"></i>
</div>
<div>
<p class="text-sm font-medium">Started Verbal Reasoning Practice</p>
<p class="text-xs text-gray-500">1 day ago - 15/20 correct</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-full mr-3">
<i class="fas fa-bell text-purple-600 text-sm"></i>
</div>
<div>
<p class="text-sm font-medium">New exam scheduled for June 15</p>
<p class="text-xs text-gray-500">2 days ago</p>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-6">
<h2 class="text-lg font-semibold mb-4">Performance by Subject</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h3 class="font-medium mb-2">Quantitative Reasoning</h3>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-blue-600 h-2.5 rounded-full" style="width: 78%"></div>
</div>
<div class="flex justify-between text-xs text-gray-500 mt-1">
<span>Last test: 78%</span>
<span>Average: 72%</span>
</div>
</div>
<div>
<h3 class="font-medium mb-2">Verbal Reasoning</h3>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-green-600 h-2.5 rounded-full" style="width: 65%"></div>
</div>
<div class="flex justify-between text-xs text-gray-500 mt-1">
<span>Last test: 65%</span>
<span Average: 68%</span>
</div>
</div>
<div>
<h3 class="font-medium mb-2">Analytical Writing</h3>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-purple-600 h-2.5 rounded-full" style="width: 82%"></div>
</div>
<div class="flex justify-between text-xs text-gray-500 mt-1">
<span>Last test: 82%</span>
<span>Average: 79%</span>
</div>
</div>
<div>
<h3 class="font-medium mb-2">Integrated Reasoning</h3>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-yellow-600 h-2.5 rounded-full" style="width: 70%"></div>
</div>
<div class="flex justify-between text-xs text-gray-500 mt-1">
<span>Last test: 70%</span>
<span>Average: 65%</span>
</div>
</div>
</div>
</div>
</div>
<!-- Practice Tests Tab -->
<div class="tab-content" id="practice-tab">
<div class="bg-white rounded-lg shadow p-6 mb-6">
<h2 class="text-lg font-semibold mb-4">Practice Tests</h2>
<p class="text-gray-600 mb-6">Select a subject to practice or take a full-length simulated test.</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<div class="flex items-center mb-3">
<div class="bg-blue-100 p-2 rounded-full mr-3">
<i class="fas fa-calculator text-blue-600"></i>
</div>
<h3 class="font-medium">Quantitative Reasoning</h3>
</div>
<p class="text-sm text-gray-600 mb-4">Practice math and quantitative problems similar to the GRE.</p>
<div class="flex justify-between text-xs text-gray-500 mb-3">
<span>Questions: 20</span>
<span>Duration: 35 min</span>
</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 rounded-md text-sm font-medium transition-colors practice-btn" data-subject="quantitative">
Start Practice
</button>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<div class="flex items-center mb-3">
<div class="bg-green-100 p-2 rounded-full mr-3">
<i class="fas fa-book-open text-green-600"></i>
</div>
<h3 class="font-medium">Verbal Reasoning</h3>
</div>
<p class="text-sm text-gray-600 mb-4">Practice reading comprehension and vocabulary questions.</p>
<div class="flex justify-between text-xs text-gray-500 mb-3">
<span>Questions: 20</span>
<span>Duration: 30 min</span>
</div>
<button class="w-full bg-green-600 hover:bg-green-700 text-white py-2 rounded-md text-sm font-medium transition-colors practice-btn" data-subject="verbal">
Start Practice
</button>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<div class="flex items-center mb-3">
<div class="bg-purple-100 p-2 rounded-full mr-3">
<i class="fas fa-pen-fancy text-purple-600"></i>
</div>
<h3 class="font-medium">Analytical Writing</h3>
</div>
<p class="text-sm text-gray-600 mb-4">Practice essay writing with timed prompts and sample responses.</p>
<div class="flex justify-between text-xs text-gray-500 mb-3">
<span>Tasks: 2</span>
<span>Duration: 60 min</span>
</div>
<button class="w-full bg-purple-600 hover:bg-purple-700 text-white py-2 rounded-md text-sm font-medium transition-colors practice-btn" data-subject="writing">
Start Practice
</button>
</div>
</div>
<div class="border-t pt-6">
<h3 class="font-medium mb-4">Full-Length Simulated Tests</h3>
<div class="bg-gray-50 rounded-lg p-4 border">
<div class="flex flex-col md:flex-row md:items-center md:justify-between">
<div>
<h4 class="font-medium">GRE General Test Simulation</h4>
<p class="text-sm text-gray-600">Complete test with all sections under timed conditions</p>
<div class="flex space-x-4 text-xs text-gray-500 mt-2">
<span><i class="fas fa-clock mr-1"></i> 3h 45m</span>
<span><i class="fas fa-question-circle mr-1"></i> 82 questions</span>
</div>
</div>
<button class="mt-4 md:mt-0 bg-red-600 hover:bg-red-700 text-white py-2 px-6 rounded-md text-sm font-medium transition-colors" id="full-test-btn">
Start Full Test
</button>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-6">
<h2 class="text-lg font-semibold mb-4">Previous Practice Results</h2>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Test</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Score</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Time Spent</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Details</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Quantitative Reasoning</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Jun 10, 2023</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">85%</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">32 min</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<a href="#" class="text-blue-600 hover:text-blue-900">View</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Verbal Reasoning</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Jun 8, 2023</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">72%</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">28 min</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<a href="#" class="text-blue-600 hover:text-blue-900">View</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Full Test Simulation</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Jun 5, 2023</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">78%</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">3h 32m</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<a href="#" class="text-blue-600 hover:text-blue-900">View</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Exams Tab -->
<div class="tab-content" id="exams-tab">
<div class="bg-white rounded-lg shadow p-6 mb-6">
<h2 class="text-lg font-semibold mb-4">Scheduled Exams</h2>
<div class="space-y-4">
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<div class="flex flex-col md:flex-row md:items-center md:justify-between">
<div>
<h3 class="font-medium">Midterm Examination - Quantitative Reasoning</h3>
<div class="flex flex-wrap items-center mt-1 text-sm text-gray-600">
<span class="flex items-center mr-4"><i class="fas fa-calendar-day mr-1"></i> June 15, 2023</span>
<span class="flex items-center mr-4"><i class="fas fa-clock mr-1"></i> 10:00 AM - 11:30 AM</span>
<span class="flex items-center"><i class="fas fa-question-circle mr-1"></i> 30 questions</span>
</div>
</div>
<div class="mt极抱歉,我的回答被截断了。我将继续完成完整的实现:
```html
<div class="mt-3 md:mt-0 flex space-x-2">
<button class="bg-blue-600 hover:bg-blue-700 text-white py-1 px-4 rounded-md text-sm font-medium transition-colors exam-details-btn" data-exam="1">
Details
</button>
<button class="bg-gray-200 hover:bg-gray-300 text-gray-800 py-1 px-4 rounded-md text-sm font-medium transition-colors">
Reminder
</button>
</div>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow">
<div class="flex flex-col md:flex-row md:items-center md:justify-between">
<div>
<h极抱歉,我的回答再次被截断。以下是完整的实现:
```html
<h3 class="font-medium">Final Examination - Verbal Reasoning</h3>
<div class="flex flex-wrap items-center mt-1 text-sm text-gray-600">
<span class="flex items-center mr-4"><i class="fas fa-calendar-day mr-1"></i> June 30, 2023</span>
<span class="flex items-center mr-4"><i class="fas fa-clock mr-1"></i> 2:00 PM - 3:15 PM</span>
<span class="flex items-center"><i class="fas fa-question-circle mr极抱歉,我的回答再次被截断。以下是完整的实现:
```html
<span class="flex items-center"><i class="fas fa-question-circle mr-1"></i> 25 questions</span>
</div>
</div>
<div class="mt-3 md:mt-0 flex space-x-2">
<button class="bg-blue-600 hover:bg-blue-700 text-white py-1 px-4 rounded-md text-sm font-medium transition-colors exam-details-btn" data-exam="2">
Details
</button>
<button class="bg-gray-200 hover:bg-gray-300 text-gray-800 py-1 px-4 rounded-md text-sm font-medium transition-colors">
Reminder
</button>
</div>
</div>
</div>
<div class="border rounded-lg p-4 hover:shadow-md transition-shadow bg-gray-50">
<div class="flex flex-col md:flex-row md:items-center md:justify-between">
<div>
<h3 class="font-medium">Comprehensive GRE Simulation</h3>
<div class="flex flex-wrap items-center mt-1 text-sm text-gray-600">
<span class="flex items-center mr-4"><i class="fas fa-calendar-day mr-1"></i> July 10, 2023</span>
<span class="flex items-center mr-4"><i class="fas fa-clock mr-1"></i> 9:00 AM - 12:45 PM</span>
<span class="flex items-center"><i class="fas fa-question-circle mr-1"></i> 82 questions</span>
</div>
</div>
<div class="mt-3 md:mt-0 flex space-x-2">
<button class="bg-blue-600 hover:bg-blue-700 text-white py-1 px-4 rounded-md text-sm font-medium transition-colors exam-details-btn" data-exam="3">
Details
</button>
<button class="bg-gray-200 hover:bg-gray-300 text-gray-800 py-1 px-4 rounded-md text-sm font-medium transition-colors">
Reminder
</button>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-6">
<h2 class="text-lg font-semibold mb极抱歉,我的回答再次被截断。以下是完整的实现:
```html
<h2 class="text-lg font-semibold mb-4">Completed Exams</h2>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray极抱歉,我的回答再次被截断。以下是完整的实现:
```html
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Exam</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Score</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Details</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Quantitative Midterm</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">May 15, 2023</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">88%</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-100 text-green-800">Completed</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<a href="#" class="text-blue-600 hover:text-blue-900">View</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Verbal Assessment</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Apr 28, 2023</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">75%</td>
<极抱歉,我的回答再次被截断。以下是完整的实现:
```html
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">Completed</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<a href="#" class="text-blue-600 hover:text-blue-900">View</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Diagnostic Test</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Apr 10, 2023</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">68%</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-100 text-green-800">Completed</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<a href="#" class="text-blue-600 hover:text-blue-900">View</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Admin Panel Tab -->
<div class="tab-content" id="admin-tab">
<div class="bg-white rounded-lg shadow p-6 mb-6">
<h2 class="text-lg font-semibold mb
</html> |