-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsbom_vis.html
More file actions
93 lines (88 loc) · 3.59 KB
/
sbom_vis.html
File metadata and controls
93 lines (88 loc) · 3.59 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
<!DOCTYPE html>
<!--
Copyright 2017-2025 Eliot Lear
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
SPDX-License-Identifier: Apache-2.0
-->
<!--
Prism by TEMPLATED templated.co @templatedco Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)-->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Generate Software Bill of Materials</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css">
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<script type="text/javascript" src="sbom.js" defer="defer"></script>
</head>
<body> <!-- Banner -->
<section id="banner">
<div class="inner split">
<section>
<h2>Visualize Your System</h2>
</section>
<section>
<p>MUDMaker: A tool to build your own MUD files</p>
<ul class="actions">
</ul>
<ul class="actions">
<li><a href="index.html" class="button special">Back to the Intro</a></li>
</ul>
</section>
</div>
</section>
<section id="two" class="wrapper style2 alt">
<div class="inner">
<div class="content">
<h3>Let's visualize what software is on your system:</h3>
<form method="post" action="get_visual" target="visframe" enctype="multipart/form-data"><br>
Upload software bill of materials file from: file <input name="sbomloc"
id="sbfile"
value="sbomfileselect"
type="radio"
onchange='sbomselect("urlviewer","fileselector");'>
or URL
<input name="sbomloc"
id="sburl"
value="sbomurl"
type="radio"
onchange='sbomselect("fileselector","urlviewer");'>
<br>
<div id="urlviewer" style="display: none">
URL <input type="url"> </div>
<div id="fileselector" style="display: none">
<input name="sbomfile" id="sbomfile"
type="file">
</div> <br>
<br>
<input class="actions" value="Reset" type="reset"> <input class="actions"
value="Process SBOM"
type="submit">
</form>
</div>
<iframe name="visframe" width="100%" height="512px" title="Results">
</iframe>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="copyright"> © Untitled. All rights reserved. Images: <a href="http://unsplash.com">Unsplash</a>.
Design: <a href="http://templated.co">TEMPLATED</a>. </div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>