-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.45 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>SBOM Viewer</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
</head>
<body>
<div id="file-input-container" class="file-input-container">
<span class="file-input-text">Drop your SBOM file here</span>
<input type="file" />
</div>
<main id="results-container" class="results-container">
<div class="results-info">
<h1 id="package-name"></h1>
<dl>
<dt>Package Count:</dt>
<dd id="package-count">0</dd>
<dt>Unique Licenses:</dt>
<dd id="unique-licenses">0</dd>
</dl>
<div class="license-graph" id="license-graph"></div>
</div>
<div class="filter-container">
<fieldset>
<legend class="hidden" id="license-filter-name">Licenses</legend>
<div id="license-filter-inputs"></div>
</fieldset>
</div>
<div class="package-list-container">
<ul class="package-list" id="package-list"></ul>
</div>
</main>
</body>
</html>