-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterview.html
More file actions
96 lines (70 loc) · 2.96 KB
/
Copy pathinterview.html
File metadata and controls
96 lines (70 loc) · 2.96 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Tracker</title>
<!-- <link rel="stylesheet" href="style.css"> -->
<link rel="shortcut icon" href="data:,">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<script src="https://code.jquery.com/jquery-4.0.0.js"></script>
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<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">
<style>
* {
font-family: "Geist", sans-serif;
/* color: #002C5C; */
}
</style>
</head>
<!-- flex flex-col align-middle justify-center -->
<body class="min-h-screen bg-base-200 text-blue-950">
<section class ="title-container border-b-2 border-gray-300 text-center p-10 w-14/15 md:w-8/12 mx-auto">
<h1 class="text-3xl text-left font-bold my-7">Job Application Tracker</h1>
<div class="flex flex-col md:flex-row gap-4 md:gap-6 mx-auto max-w-4xl ">
<div class="card bg-base-100 shadow-sm flex-1">
<div class="card-body text-left p-3 m-3">
<p class="text-base font-semibold">Total Jobs</p>
<h2 class="card-title font-bold text-3xl">0</h2>
</div>
</div>
<div class="card bg-base-100 shadow-sm flex-1">
<div class="card-body text-left p-3 m-3">
<p class="text-base font-semibold">Interviewed</p>
<h2 class="card-title font-bold text-3xl text-green-600">0</h2>
</div>
</div>
<div class="card bg-base-100 shadow-sm flex-1">
<div class="card-body text-left p-3 m-3">
<p class="text-base font-semibold">Rejected</p>
<h2 class="card-title font-bold text-3xl text-red-600">0</h2>
</div>
</div>
</div>
</section>
<section id="Job-container-intl" class ="text-center px-10 pt-1.5 pb-10 w-14/15 md:w-8/12 mx-auto">
<h1 class="text-2xl text-left font-bold my-7">Available Jobs</h1>
<div class="flex flex-col gap-3 md:flex-row mx-auto max-w-4xl justify-start ">
<button id="home-page" class="btn btn-primary btn-soft">All</button>
<button id="interview-page" class="btn btn-primary btn-soft">Interview</button>
<button id="reject-page" class="btn btn-primary btn-soft">Rejected</button>
</div>
<div class="mx-auto space-y-6 my-7 ">
<div class="card bg-base-100 shadow-sm">
<div class="card-body text-left p-3 m-3">
<div class="text-center p-[30px] md:p-[100px] space-y-3">
<img class="mx-auto" src="./jobs.png" alt="">
<p class="text-lg font-semibold">No Jobs Available</p>
<p class="text-gray-500 font-normal text-base mb-1">come back soon for new opportunities</p>
</div>
</div>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>