-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjobBoard.html
More file actions
148 lines (136 loc) · 5.31 KB
/
Copy pathjobBoard.html
File metadata and controls
148 lines (136 loc) · 5.31 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Job Listings Page</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400&family=Share+Tech+Mono&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
</head>
<body>
<aside>
<img
src="./assets/imgs/cy-logo-dstacked-color.png"
alt="CodeYou Logo"
class="logo"
id="logo-stacked"/>
<img
src="./assets//imgs/cy-logo-horz-color.png"
alt="Code:You Logo"
class="logo-horizontal"
id="logo-horizontal"/>
<nav>
<a href="index.html"><i class="fa-solid fa-house"></i> Home</a>
<a href="jobBoard.html"><i class="fa-solid fa-briefcase"></i> Job Board</a>
<a href="dashboard.html" class="active"><i class="fa-solid fa-chart-bar"></i> Dashboard</a>
<a href="contact.html"><i class="fa-solid fa-address-book"></i> Contact Us</a>
</nav>
</aside>
<div class="container">
<div class="header">
<h1>Job Listings</h1>
<div class="search-section">
<input
type="text"
class="search-bar"
placeholder="Search jobs by title, company, or skills"
id="searchInput"/>
<!-- Dynamically pulls in the stats from our API call -->
<div class="stats">
<div class="stat-item">
<strong>Number of jobs:</strong> <span id="job-count">0</span>
</div>
<div class="stat-item">
<strong>Pay range:</strong>
<span id="pay-range">Loading...</span>
</div>
<div class="stat-item">
<strong>Skills:</strong>
<span id="skills-list">Loading...</span>
</div>
</div>
<div class="filters">
<div class="filter-group">
<label for="pathwayFilter">Pathway</label>
<select class="filter-select" id="pathwayFilter">
<option value="">All</option>
<option value="Python">Python</option>
<option value="C#">C#</option>
<option value="JavaScript">JavaScript</option>
<option value="PHP">PHP</option>
<option value="Web">Web</option>
<option value="Software">Software</option>
<option value="Data">Data</option>
</select>
</div>
<div class="filter-group">
<label for="locationFilter">Location</label>
<select class="filter-select" id="locationFilter">
<option value="">All</option>
<option value="Remote">Remote</option>
<option value="Louisville">Louisville</option>
<option value="Southern Indiana">Southern Indiana</option>
<option value="Northern KY">Northern KY</option>
<option value="Central KY">Central KY</option>
<option value="Eastern KY">Eastern KY</option>
</select>
</div>
<div class="filter-group">
<label for="payRangeFilter">Pay Range</label>
<select class="filter-select" id="payRangeFilter">
<option value="">All</option>
<option value="50000">Min: $50,000</option>
<option value="150000">Max: $150,000</option>
</select>
</div>
<div class="filter-group">
<label for="skillsFilter">Skills</label>
<select class="filter-select" id="skillsFilter">
<option value="">All</option>
<option value="Python">Python</option>
<option value="C#">C#</option>
<option value="JavaScript">JavaScript</option>
<option value="PHP">PHP</option>
<option value="Excel">Excel</option>
</select>
</div>
</div>
</div>
</div>
<div class="table-container">
<div class="table-wrapper no-display">
<table class="job-table" id="jobTable">
<thead>
<tr>
<th>Date</th>
<th>Employer</th>
<th>Job Title</th>
<th>Pathway</th>
<th>Language</th>
<th>Salary Range</th>
<th>Contact Person</th>
<th>Location</th>
<th>Apply</th>
<!-- <th>Vacancy</th> -->
</tr>
</thead>
<tbody id="jobTableBody">
<!-- Jobs will be populated by JavaScript -->
</tbody>
</table>
<div class="pagination-controls" id="pagination-controls"></div>
</div>
<div class="job-data-status">Loading Job Data...</div>
</div>
<footer>
<p>© 2025 Code:You. All rights reserved.</p>
</footer>
<div class="hamburger">
<i class="fa-solid fa-bars"></i>
</div>
</div>
<script src="./src/menu.js" type="text/javascript"></script>
<script src="./src/jobBoard.js"></script>
</body>
</html>