-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplications.html
More file actions
104 lines (91 loc) · 3.83 KB
/
Copy pathapplications.html
File metadata and controls
104 lines (91 loc) · 3.83 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
<!--
Project: BD Job Autofill
Module: Applications Page
Purpose: Full-page UI for tracking job applications, deadlines, and status.
Author: Lead Engineer
Version: 1.0.0
Dependencies: applications.css, applications.js
Last Updated: 2026-07-06
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Application Tracker — BD Job Autofill</title>
<link rel="stylesheet" href="applications.css" />
</head>
<body>
<main class="page" role="main">
<header class="page__header">
<h1 class="page__title">Application Tracker</h1>
<button id="new-application-btn" class="button button--primary" type="button">New Application</button>
</header>
<section class="page__layout">
<section class="application-table-wrapper" aria-label="Applications">
<table class="application-table">
<thead>
<tr>
<th scope="col">Organization</th>
<th scope="col">Position</th>
<th scope="col">Applicant</th>
<th scope="col">Deadline</th>
<th scope="col">Status</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody id="application-table-body"></tbody>
</table>
<p id="application-table-empty" class="application-table__empty" hidden>No applications tracked yet.</p>
</section>
<section class="application-form-wrapper" aria-label="Application editor">
<form id="application-form" class="application-form" novalidate hidden>
<input type="hidden" id="app-id" />
<label class="field">
<span class="field__label">Organization</span>
<input type="text" id="app-organization" name="organization" required autocomplete="off" />
</label>
<label class="field">
<span class="field__label">Position</span>
<input type="text" id="app-position" name="position" autocomplete="off" />
</label>
<label class="field">
<span class="field__label">Applicant</span>
<select id="app-profileId" name="profileId"></select>
</label>
<label class="field">
<span class="field__label">Application URL</span>
<input type="url" id="app-url" name="url" autocomplete="off" />
</label>
<label class="field">
<span class="field__label">Deadline</span>
<input type="date" id="app-deadline" name="deadline" />
</label>
<label class="field">
<span class="field__label">Status</span>
<select id="app-status" name="status">
<option value="planned">Planned</option>
<option value="applied">Applied</option>
<option value="admit_card">Admit Card</option>
<option value="exam">Exam</option>
<option value="result">Result</option>
<option value="rejected">Rejected</option>
</select>
</label>
<label class="field">
<span class="field__label">Notes</span>
<textarea id="app-notes" name="notes" rows="3"></textarea>
</label>
<div class="application-form__actions">
<button type="submit" class="button button--primary">Save Application</button>
<button type="button" id="delete-application-btn" class="button button--danger">Delete</button>
</div>
<p id="application-form-status" class="form-status" role="status" aria-live="polite"></p>
</form>
<p id="application-form-empty-hint" class="form-empty-hint">Select an application or create a new one.</p>
</section>
</section>
</main>
<script src="applications.js" type="module"></script>
</body>
</html>