Spaces:
Running
Running
File size: 39,614 Bytes
7a03992 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Theme Template</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 animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeIn 0.5s ease-out forwards;
}
.slide-up {
animation: slideUp 0.5s ease-out forwards;
}
/* Custom checkbox */
.custom-checkbox {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 18px;
height: 18px;
border: 2px solid #4f46e5;
border-radius: 4px;
outline: none;
cursor: pointer;
position: relative;
}
.custom-checkbox:checked {
background-color: #4f46e5;
}
.custom-checkbox:checked::after {
content: '\2713';
font-size: 12px;
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Gradient text */
.gradient-text {
background: linear-gradient(90deg, #4f46e5, #c026d3);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Login Screen -->
<div id="login-screen" class="min-h-screen flex items-center justify-center p-4">
<div class="w-full max-w-md bg-white rounded-xl shadow-2xl overflow-hidden transition-all duration-500 transform hover:scale-[1.01]">
<div class="bg-gradient-to-r from-indigo-600 to-purple-600 p-8 text-center">
<h1 class="text-3xl font-bold text-white">Welcome Back</h1>
<p class="text-indigo-200 mt-2">Sign in to access your dashboard</p>
</div>
<div class="p-8">
<form id="login-form" class="space-y-6">
<div>
<label for="username" class="block text-sm font-medium text-gray-700 mb-1">Username</label>
<div class="relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i class="fas fa-user text-gray-400"></i>
</div>
<input type="text" id="username" name="username" required
class="pl-10 w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition duration-200"
placeholder="Enter your username">
</div>
</div>
<div>
<label for="password" class="block text-sm font-medium text-gray-700 mb-1">Password</label>
<div class="relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i class="fas fa-lock text-gray-400"></i>
</div>
<input type="password" id="password" name="password" required
class="pl-10 w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition duration-200"
placeholder="Enter your password">
</div>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center">
<input type="checkbox" id="remember" class="custom-checkbox">
<label for="remember" class="ml-2 text-sm text-gray-600">Remember me</label>
</div>
<a href="#" class="text-sm text-indigo-600 hover:text-indigo-500">Forgot password?</a>
</div>
<button type="submit" class="w-full bg-gradient-to-r from-indigo-600 to-purple-600 text-white py-2 px-4 rounded-lg hover:from-indigo-700 hover:to-purple-700 transition duration-300 flex items-center justify-center">
<span>Sign In</span>
<i class="fas fa-arrow-right ml-2"></i>
</button>
</form>
<div class="mt-6">
<div class="relative">
<div class="absolute inset-0 flex items-center">
<div class="w-full border-t border-gray-300"></div>
</div>
<div class="relative flex justify-center text-sm">
<span class="px-2 bg-white text-gray-500">Or continue with</span>
</div>
</div>
<div class="mt-6 grid grid-cols-3 gap-3">
<a href="#" class="w-full inline-flex justify-center py-2 px-4 border border-gray-300 rounded-lg bg-white text-sm font-medium text-gray-500 hover:bg-gray-50 transition duration-200">
<i class="fab fa-google text-red-500"></i>
</a>
<a href="#" class="w-full inline-flex justify-center py-2 px-4 border border-gray-300 rounded-lg bg-white text-sm font-medium text-gray-500 hover:bg-gray-50 transition duration-200">
<i class="fab fa-facebook-f text-blue-600"></i>
</a>
<a href="#" class="w-full inline-flex justify-center py-2 px-4 border border-gray-300 rounded-lg bg-white text-sm font-medium text-gray-500 hover:bg-gray-50 transition duration-200">
<i class="fab fa-twitter text-blue-400"></i>
</a>
</div>
</div>
</div>
<div class="px-8 py-4 bg-gray-50 text-center">
<p class="text-gray-600 text-sm">
Don't have an account?
<a href="#" class="font-medium text-indigo-600 hover:text-indigo-500">Sign up</a>
</p>
</div>
</div>
</div>
<!-- Success Dashboard (shown after correct login) -->
<div id="success-dashboard" class="hidden min-h-screen">
<!-- Header -->
<header class="bg-gradient-to-r from-indigo-600 to-purple-600 text-white shadow-lg">
<div class="container mx-auto px-4 py-6 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-rocket text-2xl"></i>
<h1 class="text-2xl font-bold">Premium Dashboard</h1>
</div>
<div class="flex items-center space-x-4">
<div class="relative">
<button id="notification-btn" class="p-2 rounded-full hover:bg-indigo-700 transition duration-200">
<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 id="profile-btn" class="flex items-center space-x-2">
<div class="h-8 w-8 rounded-full bg-indigo-400 flex items-center justify-center">
<i class="fas fa-user text-white"></i>
</div>
<span class="font-medium">Admin</span>
</button>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="flex">
<!-- Sidebar -->
<aside id="sidebar" class="w-64 bg-white shadow-lg h-screen sticky top-0 transition-all duration-300">
<div class="p-4">
<nav class="mt-6">
<div class="mb-8">
<h2 class="text-xs font-semibold text-gray-500 uppercase tracking-wider">Main Menu</h2>
<ul class="mt-4 space-y-2">
<li>
<a href="#" class="flex items-center px-4 py-2 text-indigo-600 bg-indigo-50 rounded-lg">
<i class="fas fa-home mr-3"></i>
<span>Dashboard</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-600 hover:text-indigo-600 hover:bg-indigo-50 rounded-lg transition duration-200">
<i class="fas fa-chart-line mr-3"></i>
<span>Analytics</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-600 hover:text-indigo-600 hover:bg-indigo-50 rounded-lg transition duration-200">
<i class="fas fa-envelope mr-3"></i>
<span>Messages</span>
<span class="ml-auto bg-red-500 text-white text-xs px-2 py-1 rounded-full">5</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-600 hover:text-indigo-600 hover:bg-indigo-50 rounded-lg transition duration-200">
<i class="fas fa-cog mr-3"></i>
<span>Settings</span>
</a>
</li>
</ul>
</div>
<div class="mb-8">
<h2 class="text-xs font-semibold text-gray-500 uppercase tracking-wider">Sub Menu</h2>
<ul class="mt-4 space-y-2">
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-600 hover:text-indigo-600 hover:bg-indigo-50 rounded-lg transition duration-200">
<i class="fas fa-calendar mr-3"></i>
<span>Calendar</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-600 hover:text-indigo-600 hover:bg-indigo-50 rounded-lg transition duration-200">
<i class="fas fa-users mr-3"></i>
<span>Team</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-600 hover:text-indigo-600 hover:bg-indigo-50 rounded-lg transition duration-200">
<i class="fas fa-file-alt mr-3"></i>
<span>Reports</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-600 hover:text-indigo-600 hover:bg-indigo-50 rounded-lg transition duration-200">
<i class="fas fa-project-diagram mr-3"></i>
<span>Projects</span>
</a>
</li>
</ul>
</div>
<div>
<h2 class="text-xs font-semibold text-gray-500 uppercase tracking-wider">Social Media</h2>
<div class="mt-4 flex space-x-4">
<a href="#" class="text-gray-500 hover:text-indigo-600 transition duration-200">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600 transition duration-200">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600 transition duration-200">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600 transition duration-200">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</nav>
</div>
</aside>
<!-- Main Content Area -->
<main class="flex-1 p-8">
<div class="max-w-6xl mx-auto">
<!-- Congratulations Message -->
<div class="bg-gradient-to-r from-green-500 to-emerald-500 text-white rounded-xl p-6 mb-8 shadow-lg slide-up">
<div class="flex items-center">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-4xl"></i>
</div>
<div class="ml-4">
<h2 class="text-2xl font-bold">Congratulations!</h2>
<p class="mt-1">You have successfully logged in with the correct key (1444). Enjoy your premium access!</p>
</div>
</div>
</div>
<!-- Dashboard Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
<div class="bg-white rounded-xl shadow-md p-6 hover:shadow-lg transition duration-300 slide-up" style="animation-delay: 0.1s">
<div class="flex items-center">
<div class="p-3 rounded-lg bg-indigo-100 text-indigo-600">
<i class="fas fa-users text-xl"></i>
</div>
<div class="ml-4">
<p class="text-gray-500">Total Users</p>
<h3 class="text-2xl font-bold">1,248</h3>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md p-6 hover:shadow-lg transition duration-300 slide-up" style="animation-delay: 0.2s">
<div class="flex items-center">
<div class="p-3 rounded-lg bg-green-100 text-green-600">
<i class="fas fa-chart-line text-xl"></i>
</div>
<div class="ml-4">
<p class="text-gray-500">Revenue</p>
<h3 class="text-2xl font-bold">$24,780</h3>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md p-6 hover:shadow-lg transition duration-300 slide-up" style="animation-delay: 0.3s">
<div class="flex items-center">
<div class="p-3 rounded-lg bg-blue-100 text-blue-600">
<i class="fas fa-shopping-cart text-xl"></i>
</div>
<div class="ml-4">
<p class="text-gray-500">Orders</p>
<h3 class="text-2xl font-bold">356</h3>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md p-6 hover:shadow-lg transition duration-300 slide-up" style="animation-delay: 0.4s">
<div class="flex items-center">
<div class="p-3 rounded-lg bg-purple-100 text-purple-600">
<i class="fas fa-tasks text-xl"></i>
</div>
<div class="ml-4">
<p class="text-gray-500">Tasks</p>
<h3 class="text-2xl font-bold">18/24</h3>
</div>
</div>
</div>
</div>
<!-- Recent Activity -->
<div class="bg-white rounded-xl shadow-md p-6 mb-8 slide-up" style="animation-delay: 0.5s">
<h2 class="text-xl font-bold mb-4">Recent Activity</h2>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-indigo-100 flex items-center justify-center">
<i class="fas fa-user text-indigo-600"></i>
</div>
<div class="ml-4">
<p class="text-sm font-medium">New user registered</p>
<p class="text-sm text-gray-500">John Doe joined the platform</p>
<p class="text-xs text-gray-400 mt-1">2 hours ago</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-green-100 flex items-center justify-center">
<i class="fas fa-shopping-cart text-green-600"></i>
</div>
<div class="ml-4">
<p class="text-sm font-medium">New order received</p>
<p class="text-sm text-gray-500">Order #1234 for $249.99</p>
<p class="text-xs text-gray-400 mt-1">4 hours ago</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center">
<i class="fas fa-comment text-blue-600"></i>
</div>
<div class="ml-4">
<p class="text-sm font-medium">New message</p>
<p class="text-sm text-gray-500">You have a new message from Sarah</p>
<p class="text-xs text-gray-400 mt-1">1 day ago</p>
</div>
</div>
</div>
</div>
<!-- Quick Stats -->
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<div class="bg-white rounded-xl shadow-md p-6 slide-up" style="animation-delay: 0.6s">
<h2 class="text-xl font-bold mb-4">Performance</h2>
<div class="h-64 bg-gray-100 rounded-lg flex items-center justify-center">
<p class="text-gray-500">Performance chart would display here</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md p-6 slide-up" style="animation-delay: 0.7s">
<h2 class="text-xl font-bold mb-4">Quick Actions</h2>
<div class="grid grid-cols-2 gap-4">
<button class="p-4 bg-indigo-50 text-indigo-600 rounded-lg hover:bg-indigo-100 transition duration-200 flex flex-col items-center">
<i class="fas fa-plus text-xl mb-2"></i>
<span>Add New</span>
</button>
<button class="p-4 bg-green-50 text-green-600 rounded-lg hover:bg-green-100 transition duration-200 flex flex-col items-center">
<i class="fas fa-upload text-xl mb-2"></i>
<span>Upload</span>
</button>
<button class="p-4 bg-blue-50 text-blue-600 rounded-lg hover:bg-blue-100 transition duration-200 flex flex-col items-center">
<i class="fas fa-cog text-xl mb-2"></i>
<span>Settings</span>
</button>
<button class="p-4 bg-purple-50 text-purple-600 rounded-lg hover:bg-purple-100 transition duration-200 flex flex-col items-center">
<i class="fas fa-chart-pie text-xl mb-2"></i>
<span>Reports</span>
</button>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
<!-- Failed Login Dashboard (shown after incorrect login) -->
<div id="failed-dashboard" class="hidden min-h-screen">
<!-- Header -->
<header class="bg-gradient-to-r from-blue-500 to-cyan-500 text-white shadow-lg">
<div class="container mx-auto px-4 py-6 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-home text-2xl"></i>
<h1 class="text-2xl font-bold">Welcome Dashboard</h1>
</div>
<div class="flex items-center space-x-4">
<button id="logout-btn" class="flex items-center space-x-2 bg-white/20 hover:bg-white/30 px-4 py-2 rounded-lg transition duration-200">
<i class="fas fa-sign-out-alt"></i>
<span>Logout</span>
</button>
</div>
</div>
</header>
<!-- Main Content -->
<div class="flex">
<!-- Sidebar -->
<aside id="failed-sidebar" class="w-64 bg-white shadow-lg h-screen sticky top-0 transition-all duration-300">
<div class="p-4">
<nav class="mt-6">
<div class="mb-8">
<h2 class="text-xs font-semibold text-gray-500 uppercase tracking-wider">Main Menu</h2>
<ul class="mt-4 space-y-2">
<li>
<a href="#" class="flex items-center px-4 py-2 text-blue-600 bg-blue-50 rounded-lg">
<i class="fas fa-home mr-3"></i>
<span>Dashboard</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-600 hover:text-blue-600 hover:bg-blue-50 rounded-lg transition duration-200">
<i class="fas fa-info-circle mr-3"></i>
<span>About</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-600 hover:text-blue-600 hover:bg-blue-50 rounded-lg transition duration-200">
<i class="fas fa-envelope mr-3"></i>
<span>Contact</span>
</a>
</li>
</ul>
</div>
<div class="mb-8">
<h2 class="text-xs font-semibold text-gray-500 uppercase tracking-wider">Limited Access</h2>
<ul class="mt-4 space-y-2">
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-400 rounded-lg cursor-not-allowed">
<i class="fas fa-chart-line mr-3"></i>
<span>Analytics</span>
<span class="ml-auto text-xs bg-gray-200 text-gray-600 px-2 py-1 rounded">Premium</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-400 rounded-lg cursor-not-allowed">
<i class="fas fa-cog mr-3"></i>
<span>Settings</span>
<span class="ml-auto text-xs bg-gray-200 text-gray-600 px-2 py-1 rounded">Premium</span>
</a>
</li>
<li>
<a href="#" class="flex items-center px-4 py-2 text-gray-400 rounded-lg cursor-not-allowed">
<i class="fas fa-users mr-3"></i>
<span>Team</span>
<span class="ml-auto text-xs bg-gray-200 text-gray-600 px-2 py-1 rounded">Premium</span>
</a>
</li>
</ul>
</div>
<div>
<h2 class="text-xs font-semibold text-gray-500 uppercase tracking-wider">Social Media</h2>
<div class="mt-4 flex space-x-4">
<a href="#" class="text-gray-500 hover:text-blue-500 transition duration-200">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-500 hover:text-blue-500 transition duration-200">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-500 hover:text-blue-500 transition duration-200">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</nav>
</div>
</aside>
<!-- Main Content Area -->
<main class="flex-1 p-8">
<div class="max-w-6xl mx-auto">
<!-- Welcome Message -->
<div class="bg-gradient-to-r from-blue-400 to-cyan-400 text-white rounded-xl p-6 mb-8 shadow-lg slide-up">
<div class="flex items-center">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-circle text-4xl"></i>
</div>
<div class="ml-4">
<h2 class="text-2xl font-bold">Welcome!</h2>
<p class="mt-1">You've entered an incorrect login key. You have limited access to features.</p>
</div>
</div>
</div>
<!-- Upgrade Prompt -->
<div class="bg-white rounded-xl shadow-md p-6 mb-8 slide-up" style="animation-delay: 0.1s">
<div class="flex flex-col md:flex-row md:items-center md:justify-between">
<div>
<h3 class="text-lg font-bold text-gray-800">Want full access?</h3>
<p class="text-gray-600 mt-1">Upgrade to premium to unlock all features!</p>
</div>
<button class="mt-4 md:mt-0 bg-gradient-to-r from-blue-500 to-cyan-500 text-white px-6 py-2 rounded-lg hover:from-blue-600 hover:to-cyan-600 transition duration-300">
Upgrade Now
</button>
</div>
</div>
<!-- Features Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8">
<div class="bg-white rounded-xl shadow-md p-6 hover:shadow-lg transition duration-300 slide-up" style="animation-delay: 0.2s">
<div class="text-blue-500 mb-4">
<i class="fas fa-info-circle text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">About Us</h3>
<p class="text-gray-600">Learn more about our company and what we stand for in our mission statement.</p>
<a href="#" class="mt-4 inline-flex items-center text-blue-500 hover:text-blue-700 transition duration-200">
Read more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="bg-white rounded-xl shadow-md p-6 hover:shadow-lg transition duration-300 slide-up" style="animation-delay: 0.3s">
<div class="text-blue-500 mb-4">
<i class="fas fa-envelope text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Contact Support</h3>
<p class="text-gray-600">Having issues? Our support team is available 24/7 to help with any questions.</p>
<a href="#" class="mt-4 inline-flex items-center text-blue-500 hover:text-blue-700 transition duration-200">
Contact us
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="bg-white rounded-xl shadow-md p-6 hover:shadow-lg transition duration-300 slide-up" style="animation-delay: 0.4s">
<div class="text-blue-500 mb-4">
<i class="fas fa-question-circle text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">FAQs</h3>
<p class="text-gray-600">Find answers to frequently asked questions about our services and platform.</p>
<a href="#" class="mt-4 inline-flex items-center text-blue-500 hover:text-blue-700 transition duration-200">
View FAQs
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Recent Updates -->
<div class="bg-white rounded-xl shadow-md p-6 slide-up" style="animation-delay: 0.5s">
<h2 class="text-xl font-bold mb-4">Recent Updates</h2>
<div class="space-y-6">
<div class="flex">
<div class="flex-shrink-0 mr-4">
<div class="h-12 w-12 rounded-full bg-blue-100 flex items-center justify-center">
<i class="fas fa-bell text-blue-500"></i>
</div>
</div>
<div>
<h4 class="text-lg font-medium">New Feature Coming Soon</h4>
<p class="text-gray-600 mt-1">We're working on exciting new features that will be available to premium users.</p>
<p class="text-sm text-gray-400 mt-2">Posted 3 days ago</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 mr-4">
<div class="h-12 w-12 rounded-full bg-blue-100 flex items-center justify-center">
<i class="fas fa-bug text-blue-500"></i>
</div>
</div>
<div>
<h4 class="text-lg font-medium">Maintenance Scheduled</h4>
<p class="text-gray-600 mt-1">We'll be performing scheduled maintenance on June 15th from 2-4 AM EST.</p>
<p class="text-sm text-gray-400 mt-2">Posted 1 week ago</p>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const loginForm = document.getElementById('login-form');
const loginScreen = document.getElementById('login-screen');
const successDashboard = document.getElementById('success-dashboard');
const failedDashboard = document.getElementById('failed-dashboard');
const logoutBtn = document.getElementById('logout-btn');
loginForm.addEventListener('submit', function(e) {
e.preventDefault();
const password = document.getElementById('password').value;
// Check if password is the correct key (1444)
if (password === '1444') {
// Hide login screen
loginScreen.classList.add('hidden');
// Show success dashboard
successDashboard.classList.remove('hidden');
successDashboard.classList.add('fade-in');
// Add animation classes to elements
const animatedElements = document.querySelectorAll('.slide-up');
animatedElements.forEach((el, index) => {
el.style.animationDelay = `${index * 0.1}s`;
});
} else {
// Hide login screen
loginScreen.classList.add('hidden');
// Show failed dashboard
failedDashboard.classList.remove('hidden');
failedDashboard.classList.add('fade-in');
// Add animation classes to elements
const animatedElements = failedDashboard.querySelectorAll('.slide-up');
animatedElements.forEach((el, index) => {
el.style.animationDelay = `${index * 0.1}s`;
});
}
});
// Logout functionality
if (logoutBtn) {
logoutBtn.addEventListener('click', function() {
// Hide dashboards
successDashboard.classList.add('hidden');
failedDashboard.classList.add('hidden');
// Show login screen
loginScreen.classList.remove('hidden');
// Reset form
loginForm.reset();
});
}
// Mobile menu toggle functionality would go here
// Notification dropdown functionality would go here
// Profile dropdown functionality would go here
});
</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=Mackin7/smart2-login" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |