-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_selection.html
More file actions
58 lines (56 loc) · 2.73 KB
/
app_selection.html
File metadata and controls
58 lines (56 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Selection</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="nav-root"></div>
<div class="page-messages" id="app-selection-messages" aria-live="polite"></div>
<header class="page-header" id="app-selection-header">
<h1 class="page-title" id="app-selection-title">App Selection</h1>
<p class="section-hint" id="app-selection-hint">Review the applications that have received metadata for each SubID and select the ones you want to include.</p>
</header>
<main class="content" id="app-selection-main" aria-labelledby="app-selection-title">
<section class="card" id="app-selection-card" aria-label="Application selection table">
<div class="card-header" id="app-selection-card-header">
<div class="form-intro" id="app-selection-form-intro">
<h2 class="section-title" id="app-selection-section-title">Available Apps</h2>
<p class="section-hint" id="app-selection-section-hint">Use the checkboxes to choose which apps belong with each SubID.</p>
</div>
<div class="form-field" id="app-selection-window-wrapper">
<label for="app-selection-window">Lookback window</label>
<select id="app-selection-window" name="app-selection-window" class="format-select">
<option value="7" selected>Last 7 days</option>
<option value="30">Last 30 days</option>
<option value="180">Last 180 days</option>
</select>
</div>
<div class="app-selection-actions" id="app-selection-actions">
<button id="app-selection-continue" class="launch-btn" type="button" disabled aria-disabled="true">Continue</button>
<p id="app-selection-selection-count" class="selection-count" aria-live="polite">0 apps selected</p>
</div>
</div>
<div class="table-wrapper" id="app-selection-table-wrapper" role="region" aria-label="App selection table wrapper" tabindex="0">
<table class="data-table" id="app-selection-table">
<thead>
<tr>
<th scope="col">Sub ID</th>
<th scope="col">App Name</th>
<th scope="col">App ID</th>
<th scope="col" class="checkbox-cell">
<label for="app-selection-toggle-all">Select</label>
<input type="checkbox" id="app-selection-toggle-all" aria-label="Select all apps" />
</th>
</tr>
</thead>
<tbody id="app-selection-table-body"></tbody>
</table>
</div>
</section>
</main>
<script type="module" src="src/entries/app_selection.js"></script>
</body>
</html>