-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
236 lines (221 loc) · 8.14 KB
/
index.html
File metadata and controls
236 lines (221 loc) · 8.14 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LaunchDesk Debugging Lab</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<main class="app-shell">
<header class="topbar">
<a class="brand" href="#" aria-label="LaunchDesk home">
<span class="brand-mark">LD</span>
<span>
<strong>LaunchDesk</strong>
<small>Website launch readiness</small>
</span>
</a>
<nav class="topbar-actions" aria-label="Primary actions">
<button
class="ghost-button"
type="button"
id="resetDemoButton"
title="Reload demo checks"
>
<span aria-hidden="true">R</span>
Reset demo
</button>
<button
class="primary-button"
type="button"
id="exportButton"
title="Export checklist as CSV"
>
<span aria-hidden="true">CSV</span>
Export CSV
</button>
</nav>
</header>
<section class="hero-panel" aria-labelledby="pageTitle">
<div class="hero-copy">
<h1 id="pageTitle">Launch readiness command center</h1>
<p>
Track the final QA, content, SEO, security, and deployment checks
before a client website goes live.
</p>
</div>
<div class="readiness-card" aria-live="polite">
<span class="metric-label">Readiness score</span>
<strong id="scoreValue">0%</strong>
<div class="progress-track" aria-hidden="true">
<span class="progress-fill" id="scoreBar"></span>
</div>
</div>
</section>
<section class="metrics-grid" aria-label="Launch metrics">
<article class="metric-card">
<span>Total checks</span>
<strong id="totalCount">0</strong>
</article>
<article class="metric-card">
<span>Fixed</span>
<strong id="fixedCount">0</strong>
</article>
<article class="metric-card">
<span>Critical open</span>
<strong id="criticalCount">0</strong>
</article>
<article class="metric-card">
<span>Due this week</span>
<strong id="dueSoonCount">0</strong>
</article>
</section>
<section class="workspace-grid">
<aside class="panel add-panel" aria-labelledby="addCheckTitle">
<div class="section-heading">
<span class="section-icon" aria-hidden="true">+</span>
<div>
<h2 id="addCheckTitle">Add launch check</h2>
<p>Create a check item for the launch team.</p>
</div>
</div>
<form id="checkForm" class="launch-form" novalidate>
<label>
Check title
<input
id="titleInput"
type="text"
placeholder="Example: Contact form tested"
/>
</label>
<div class="form-row">
<label>
Category
<select id="categoryInput">
<option value="">Select category</option>
<option value="Frontend">Frontend</option>
<option value="Backend">Backend</option>
<option value="SEO">SEO</option>
<option value="Performance">Performance</option>
<option value="Security">Security</option>
<option value="Content">Content</option>
<option value="QA">QA</option>
<option value="Deployment">Deployment</option>
</select>
</label>
<label>
Priority
<select id="priorityInput">
<option value="Low">Low</option>
<option value="Medium">Medium</option>
<option value="High">High</option>
<option value="Critical">Critical</option>
</select>
</label>
</div>
<div class="form-row">
<label>
Status
<select id="statusInput">
<option value="Pending">Pending</option>
<option value="In Progress">In Progress</option>
<option value="Fixed">Fixed</option>
<option value="Blocked">Blocked</option>
</select>
</label>
<label>
Owner
<input id="ownerInput" type="text" placeholder="Team member" />
</label>
</div>
<label>
Due date
<input id="dueDateInput" type="date" />
</label>
<button class="primary-button full-width" type="submit">
<span aria-hidden="true">+</span>
Add check
</button>
<p class="form-message" id="formMessage" role="status"></p>
</form>
</aside>
<section class="panel list-panel" aria-labelledby="checklistTitle">
<div class="list-header">
<div class="section-heading">
<span class="section-icon" aria-hidden="true">OK</span>
<div>
<h2 id="checklistTitle">Launch checklist</h2>
<p id="listSummary">No checks loaded yet.</p>
</div>
</div>
<div class="filters" aria-label="Checklist filters">
<label class="search-field">
<span class="sr-only">Search checks</span>
<input
id="searchInput"
type="search"
placeholder="Search title, category, owner..."
/>
</label>
<label>
<span class="sr-only">Filter by status</span>
<select id="statusFilter">
<option value="All">All statuses</option>
<option value="Pending">Pending</option>
<option value="In Progress">In Progress</option>
<option value="Fixed">Fixed</option>
<option value="Blocked">Blocked</option>
</select>
</label>
<label>
<span class="sr-only">Filter by priority</span>
<select id="priorityFilter">
<option value="All">All priorities</option>
<option value="Low">Low</option>
<option value="Medium">Medium</option>
<option value="High">High</option>
<option value="Critical">Critical</option>
</select>
</label>
</div>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th scope="col">Check</th>
<th scope="col">Category</th>
<th scope="col">Priority</th>
<th scope="col">Status</th>
<th scope="col">Owner</th>
<th scope="col">Due</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody id="checkRows"></tbody>
</table>
</div>
<div class="empty-state" id="emptyState" hidden>
<strong>No checks match this view</strong>
<span>Adjust the filters or add a new launch check.</span>
</div>
</section>
</section>
<section class="panel activity-panel" aria-labelledby="activityTitle">
<div class="section-heading">
<span class="section-icon" aria-hidden="true">i</span>
<div>
<h2 id="activityTitle">Debuggable activity feed</h2>
<p>
Recent actions are shown here so students can verify whether UI
events really fired.
</p>
</div>
</div>
<ol id="activityLog" class="activity-log"></ol>
</section>
</main>
<script src="js/app.js"></script>
</body>
</html>