-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (57 loc) · 2.54 KB
/
index.html
File metadata and controls
77 lines (57 loc) · 2.54 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.10.1/dist/full.min.css" rel="stylesheet">
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap" rel="stylesheet">
<title>Job Application Tracker</title>
<style>
*{
font-family: "Geist", sans-serif;
}
</style>
</head>
<body class="bg-base-200 p-6">
<div class="mx-auto max-w-[1110px]">
<h1 class="text-2xl font-bold mb-5">Job Application Tracker</h1>
<div class="grid md:grid-cols-3 gap-4 mb-6">
<div class="card bg-base-100 shadow h-24">
<div class="p-5">
<p>Total Jobs</p>
<h2 id="totalJob" class="text-3xl font-bold">0</h2>
</div>
</div>
<div class="card bg-base-100 shadow h-24">
<div class="p-5">
<p>Interview</p>
<h2 id="interviewJob" class="text-3xl font-bold text-success">0</h2>
</div>
</div>
<div class="card bg-base-100 shadow h-24">
<div class="p-5">
<p>Rejected</p>
<h2 id="rejectedJob" class="text-3xl font-bold text-error">0</h2>
</div>
</div>
</div>
<div class="job-container">
<div class="flex justify-between items-center mb-4">
<h2 class="text-lg font-bold">Available Jobs</h2>
<span><span id="tabCount">0</span> Jobs</span>
</div>
<div class="tabs mb-4 gap-2 justify-start">
<button class="tab btn tab-active w-20 py-2 px-3 mx-auto btn-primary border-gray-500" onclick="changeTab('all')" id="tabAll">All</button>
<button class="tab btn w-20 py-2 px-3 mx-auto border-gray-500" onclick="changeTab('Interview')" id="tabInterview">Interview</button>
<button class="tab btn w-20 py-2 px-3 mx-auto border-gray-500" onclick="changeTab('Rejected')" id="tabRejected">Rejected</button>
</div>
<div id="jobList"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>