| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>AutoApp Dashboard</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <style> |
| .sidebar { |
| transition: all 0.3s ease; |
| } |
| .dashboard-card { |
| transition: transform 0.3s ease, box-shadow 0.3s ease; |
| } |
| .dashboard-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50"> |
| <div class="flex h-screen overflow-hidden"> |
| |
| <div class="sidebar bg-purple-800 text-white w-64 flex-shrink-0 hidden md:block"> |
| <div class="p-6"> |
| <div class="flex items-center mb-10"> |
| <i data-feather="zap" class="w-8 h-8 mr-2 text-yellow-300"></i> |
| <h1 class="text-xl font-bold">AutoApp Filler</h1> |
| </div> |
| <nav> |
| <ul class="space-y-4"> |
| <li> |
| <a href="#" class="flex items-center px-4 py-3 rounded-lg bg-purple-700 text-white"> |
| <i data-feather="home" class="w-5 h-5 mr-3"></i> |
| Dashboard |
| </a> |
| </li> |
| <li> |
| <a href="#" class="flex items-center px-4 py-3 rounded-lg hover:bg-purple-700 text-white"> |
| <i data-feather="user" class="w-5 h-5 mr-3"></i> |
| My Profile |
| </a> |
| </li> |
| <li> |
| <a href="#" class="flex items-center px-4 py-3 rounded-lg hover:bg-purple-700 text-white"> |
| <i data-feather="briefcase" class="w-5 h-5 mr-3"></i> |
| Applications |
| </a> |
| </li> |
| <li> |
| <a href="botwizard.html" class="flex items-center px-4 py-3 rounded-lg hover:bg-purple-700 text-white"> |
| <i data-feather="zap" class="w-5 h-5 mr-3"></i> |
| AutoApply Wizard |
| </a> |
| </li> |
| <li> |
| <a href="#" class="flex items-center px-4 py-3 rounded-lg hover:bg-purple-700 text-white"> |
| <i data-feather="settings" class="w-5 h-5 mr-3"></i> |
| Settings |
| </a> |
| </li> |
| <li> |
| <a href="#" class="flex items-center px-4 py-3 rounded-lg hover:bg-purple-700 text-white"> |
| <i data-feather="help-circle" class="w-5 h-5 mr-3"></i> |
| Help & Support |
| </a> |
| </li> |
| </ul> |
| </nav> |
| </div> |
| </div> |
|
|
| |
| <div class="flex-1 overflow-auto"> |
| |
| <header class="bg-white shadow-sm"> |
| <div class="px-6 py-4 flex items-center justify-between"> |
| <div class="flex items-center"> |
| <button class="md:hidden mr-4"> |
| <i data-feather="menu" class="w-6 h-6 text-gray-600"></i> |
| </button> |
| <h2 class="text-xl font-semibold text-gray-800">Dashboard</h2> |
| </div> |
| <div class="flex items-center space-x-4"> |
| <div class="relative"> |
| <input type="text" placeholder="Search..." class="pl-10 pr-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"> |
| <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i> |
| </div> |
| <div class="relative"> |
| <button class="p-1 rounded-full hover:bg-gray-100"> |
| <i data-feather="bell" class="w-6 h-6 text-gray-600"></i> |
| <span class="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500"></span> |
| </button> |
| </div> |
| <div class="flex items-center"> |
| <img src="http://static.photos/people/200x200/42" alt="User" class="w-8 h-8 rounded-full"> |
| <span class="ml-2 text-sm font-medium hidden md:inline">John Doe</span> |
| </div> |
| </div> |
| </div> |
| </header> |
|
|
| |
| <main class="p-6"> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8"> |
| <div class="dashboard-card bg-white p-6 rounded-xl shadow-sm border-l-4 border-purple-500"> |
| <div class="flex items-center justify-between"> |
| <div> |
| <p class="text-sm font-medium text-gray-500">Total Applications</p> |
| <p class="text-2xl font-bold text-gray-800 mt-1">24</p> |
| </div> |
| <div class="p-3 rounded-full bg-purple-100 text-purple-600"> |
| <i data-feather="file-text" class="w-6 h-6"></i> |
| </div> |
| </div> |
| <p class="text-sm text-green-500 mt-2"> |
| <i data-feather="trending-up" class="w-4 h-4 inline"></i> |
| <span>12% from last month</span> |
| </p> |
| </div> |
|
|
| <div class="dashboard-card bg-white p-6 rounded-xl shadow-sm border-l-4 border-blue-500"> |
| <div class="flex items-center justify-between"> |
| <div> |
| <p class="text-sm font-medium text-gray-500">Pending</p> |
| <p class="text-2xl font-bold text-gray-800 mt-1">8</p> |
| </div> |
| <div class="p-3 rounded-full bg-blue-100 text-blue-600"> |
| <i data-feather="clock" class="w-6 h-6"></i> |
| </div> |
| </div> |
| <p class="text-sm text-gray-500 mt-2"> |
| <i data-feather="minus" class="w-4 h-4 inline"></i> |
| <span>Same as last month</span> |
| </p> |
| </div> |
|
|
| <div class="dashboard-card bg-white p-6 rounded-xl shadow-sm border-l-4 border-green-500"> |
| <div class="flex items-center justify-between"> |
| <div> |
| <p class="text-sm font-medium text-gray-500">Interview Stage</p> |
| <p class="text-2xl font-bold text-gray-800 mt-1">6</p> |
| </div> |
| <div class="p-3 rounded-full bg-green-100 text-green-600"> |
| <i data-feather="calendar" class="w-6 h-6"></i> |
| </div> |
| </div> |
| <p class="text-sm text-green-500 mt-2"> |
| <i data-feather="trending-up" class="w-4 h-4 inline"></i> |
| <span>20% from last month</span> |
| </p> |
| </div> |
|
|
| <div class="dashboard-card bg-white p-6 rounded-xl shadow-sm border-l-4 border-red-500"> |
| <div class="flex items-center justify-between"> |
| <div> |
| <p class="text-sm font-medium text-gray-500">Rejected</p> |
| <p class="text-2xl font-bold text-gray-800 mt-1">2</p> |
| </div> |
| <div class="p-3 rounded-full bg-red-100 text-red-600"> |
| <i data-feather="x" class="w-6 h-6"></i> |
| </div> |
| </div> |
| <p class="text-sm text-red-500 mt-2"> |
| <i data-feather="trending-down" class="w-4 h-4 inline"></i> |
| <span>5% from last month</span> |
| </p> |
| </div> |
| </div> |
|
|
| |
| <div class="mb-8"> |
| <div class="flex items-center justify-between mb-6"> |
| <h3 class="text-lg font-semibold text-gray-800">Recent Applications</h3> |
| <button class="flex items-center text-sm text-purple-600 hover:text-purple-800"> |
| <i data-feather="plus" class="w-4 h-4 mr-1"></i> |
| New Application |
| </button> |
| </div> |
| <div class="bg-white rounded-xl shadow-sm overflow-hidden"> |
| <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">Position</th> |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Company</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">Status</th> |
| <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th> |
| </tr> |
| </thead> |
| <tbody class="bg-white divide-y divide-gray-200"> |
| <tr> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <div class="font-medium text-gray-900">Senior UX Designer</div> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <div class="text-gray-900">TechCorp</div> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <div class="text-gray-500">May 15, 2023</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-green-100 text-green-800">Interview</span> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500"> |
| <button class="text-purple-600 hover:text-purple-900 mr-3"> |
| <i data-feather="eye" class="w-4 h-4"></i> |
| </button> |
| <button class="text-blue-600 hover:text-blue-900"> |
| <i data-feather="edit" class="w-4 h-4"></i> |
| </button> |
| </td> |
| </tr> |
| <tr> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <div class="font-medium text-gray-900">Product Manager</div> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <div class="text-gray-900">InnovateCo</div> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <div class="text-gray-500">May 10, 2023</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-blue-100 text-blue-800">Pending</span> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500"> |
| <button class="text-purple-600 hover:text-purple-900 mr-3"> |
| <i data-feather="eye" class="w-4 h-4"></i> |
| </button> |
| <button class="text-blue-600 hover:text-blue-900"> |
| <i data-feather="edit" class="w-4 h-4"></i> |
| </button> |
| </td> |
| </tr> |
| <tr> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <div class="font-medium text-gray-900">Frontend Developer</div> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <div class="text-gray-900">WebSolutions</div> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap"> |
| <div class="text-gray-500">May 5, 2023</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-red-100 text-red-800">Rejected</span> |
| </td> |
| <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500"> |
| <button class="text-purple-600 hover:text-purple-900 mr-3"> |
| <i data-feather="eye" class="w-4 h-4"></i> |
| </button> |
| <button class="text-blue-600 hover:text-blue-900"> |
| <i data-feather="edit" class="w-4 h-4"></i> |
| </button> |
| </td> |
| </tr> |
| </tbody> |
| </table> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-8 mb-8"> |
| <div class="bg-white p-6 rounded-xl shadow-sm"> |
| <h3 class="text-lg font-semibold text-gray-800 mb-4">Application Progress</h3> |
| <div class="space-y-4"> |
| <div> |
| <div class="flex justify-between mb-1"> |
| <span class="text-sm font-medium text-gray-700">TechCorp</span> |
| <span class="text-sm font-medium text-gray-500">Step 3/5</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2.5"> |
| <div class="bg-purple-600 h-2.5 rounded-full" style="width: 60%"></div> |
| </div> |
| </div> |
| <div> |
| <div class="flex justify-between mb-1"> |
| <span class="text-sm font-medium text-gray-700">InnovateCo</span> |
| <span class="text-sm font-medium text-gray-500">Step 1/5</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2.5"> |
| <div class="bg-blue-500 h-2.5 rounded-full" style="width: 20%"></div> |
| </div> |
| </div> |
| <div> |
| </body> |
| </html> |