-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.12 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Tracker</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="app">
<h1>Job Tracker</h1>
<div id="form-section">
<h2>Add or Edit Job Application</h2>
<form id="job-form">
<input type="text" id="company" placeholder="Company Name" required>
<input type="text" id="position" placeholder="Position" required>
<input type="date" id="date" required>
<select id="status">
<option value="Applied">Applied</option>
<option value="Interview">Interview</option>
<option value="Offered">Offered</option>
<option value="Rejected">Rejected</option>
</select>
<textarea id="notes" placeholder="Add notes"></textarea>
<button type="submit">Add Job</button>
</form>
</div>
<div id="search-section">
<h2>Search Jobs</h2>
<input type="text" id="search-input" placeholder="Search by company, position, or status">
</div>
<div id="jobs-section">
<h2>Job Applications</h2>
<table id="jobs-table">
<thead>
<tr>
<th>Company</th>
<th>Position</th>
<th>Date</th>
<th>Status</th>
<th>Notes</th>
<th>Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
<button id="export-btn">Export</button>
<input type="file" id="import-input" accept=".xlsx, .xls" style="display: none" />
<button id="import-btn-action">Import</button> <!-- Changed ID -->
</div>
</div>
<script src="app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/xlsx/dist/xlsx.full.min.js"></script>
</body>
</html>