Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 30 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand All @@ -23,16 +23,17 @@
id="resetDemoButton"
title="Reload demo checks"
>
<span aria-hidden="true">R</span>
<span aria-hidden="true"></span>
Reset demo
</button>

<button
class="primary-button"
type="button"
id="exportButton"
title="Export checklist as CSV"
>
<span aria-hidden="true">CSV</span>
<span aria-hidden="true">📥</span>
Export CSV
</button>
</nav>
Expand All @@ -46,9 +47,11 @@ <h1 id="pageTitle">Launch readiness command center</h1>
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>
Expand All @@ -60,14 +63,17 @@ <h1 id="pageTitle">Launch readiness command center</h1>
<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>
Expand All @@ -78,6 +84,7 @@ <h1 id="pageTitle">Launch readiness command center</h1>
<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>
Expand Down Expand Up @@ -134,7 +141,11 @@ <h2 id="addCheckTitle">Add launch check</h2>

<label>
Owner
<input id="ownerInput" type="text" placeholder="Team member" />
<input
id="ownerInput"
type="text"
placeholder="Team member"
/>
</label>
</div>

Expand All @@ -147,30 +158,36 @@ <h2 id="addCheckTitle">Add launch check</h2>
<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>
<span class="section-icon" aria-hidden="true">✓</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>
Expand All @@ -179,8 +196,10 @@ <h2 id="checklistTitle">Launch checklist</h2>
<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>
Expand All @@ -205,6 +224,7 @@ <h2 id="checklistTitle">Launch checklist</h2>
<th scope="col">Actions</th>
</tr>
</thead>

<tbody id="checkRows"></tbody>
</table>
</div>
Expand All @@ -218,19 +238,22 @@ <h2 id="checklistTitle">Launch checklist</h2>

<section class="panel activity-panel" aria-labelledby="activityTitle">
<div class="section-heading">
<span class="section-icon" aria-hidden="true">i</span>
<span class="section-icon" aria-hidden="true">📋</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>
</html>
Loading