You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.5 KiB
52 lines
2.5 KiB
<!DOCTYPE html>
|
|
<html lang="en" data-theme="light">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Job Seekers Dashboard</title>
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/daisyui/2.6.0/full.css" rel="stylesheet">
|
|
</head>
|
|
<body class="min-h-screen bg-base-200 flex flex-col">
|
|
<?php include 'navbar.php'?>
|
|
|
|
<div class="container mx-auto px-4 py-8 flex-grow">
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
<!-- My Job Applications -->
|
|
<a href="job_applications.php" class="card bg-base-100 shadow-xl hover:shadow-2xl transition-shadow duration-200">
|
|
<div class="card-body items-center text-center">
|
|
<div class="w-16 h-16 bg-primary/10 rounded-full flex items-center justify-center mb-4">
|
|
<span class="text-3xl">📄</span>
|
|
</div>
|
|
<h2 class="card-title text-xl">My Job Applications</h2>
|
|
<p class="text-base-content/70">View your application status</p>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- My Profile -->
|
|
<a href="jobseekerprofile" class="card bg-base-100 shadow-xl hover:shadow-2xl transition-shadow duration-200">
|
|
<div class="card-body items-center text-center">
|
|
<div class="w-16 h-16 bg-secondary/10 rounded-full flex items-center justify-center mb-4">
|
|
<span class="text-3xl">👤</span>
|
|
</div>
|
|
<h2 class="card-title text-xl">My Profile</h2>
|
|
<p class="text-base-content/70">View and edit your profile</p>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Logout -->
|
|
<a href="logout" class="card bg-base-100 shadow-xl hover:shadow-2xl transition-shadow duration-200">
|
|
<div class="card-body items-center text-center">
|
|
<div class="w-16 h-16 bg-error/10 rounded-full flex items-center justify-center mb-4">
|
|
<span class="text-3xl">🚪</span>
|
|
</div>
|
|
<h2 class="card-title text-xl">Logout</h2>
|
|
<p class="text-base-content/70">Exit your account</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include 'footer.php'?>
|
|
</body>
|
|
</html>
|