A small browser app for tracking job applications, statuses, dates, and notes. It runs as a static HTML/CSS/JavaScript project and saves applications in localStorage.
- Add job applications with company, position, status, date, and notes
- Edit or delete existing applications
- Search by company or position
- Filter by status: Applied, Interview, Offer, or Rejected
- Keep data in the browser with
localStorage
.
├── index.html
├── job.css
├── js
│ ├── storage.js
│ ├── tracker.js
│ ├── ui.js
│ └── validation.js
└── site-icon.svg
Open index.html in a browser.
For a simple local server, run:
python3 -m http.server 8000Then visit:
http://localhost:8000
- Add application counters for each status
- Add sorting by newest or oldest date
- Add confirmation before deleting an application
- Add screenshots to the README