Spaces:
Running
Running
| <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> |