-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (94 loc) · 3.37 KB
/
index.html
File metadata and controls
114 lines (94 loc) · 3.37 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
<!DOCTYPE html>
<!------------------------DO NOT REMOVE THIS FILE. THIS IS THE BASE OF THE REPORTS CREATED BY THE TOOL------------------------->
<head>
<meta charset="utf-8">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="main.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<span class="navbar-brand mb-0 h1">RIPuppet</span>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Visualization</a>
</li>
</ul>
</div>
</nav>
<br/>
<br/>
<br/>
<div class="container">
<h1>Visited webpages</h1>
<div class="row">
<div class="col-md-10">
<div id="svgContainer">
<svg width="3725" height="3500"></svg>
</div>
</div>
</div>
<div>
<br/>
<h4 id="stateName">State</h4>
<br/>
</div>
<div class="row">
<div class="col-md-9">
<img src="" alt="State Photo" id="stateImage" class="hidden">
</div>
<div class="col-md-3">
<div class="panel panel-default" style="margin-top: 10px;">
<table class="table">
<tbody id="executionTable">
<tr>
<th scope="row">Element type</th>
</tr>
<tr>
<td id="elementType">-</td>
</tr>
<tr>
<th id="urlOrTransition" scope="row">URL</th>
</tr>
<tr>
<td id="stateUrl">-</td>
</tr>
<tr>
<th id="errorsRow" scope="row">Errors found</th>
</tr>
<tr>
<td id="errorsNumber"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<br/>
<div>
<h5 id="errorsTitle">Errors</h5>
<br/>
<br/>
<div class="col-md-9" id="errorMessageContainer">
</div>
</div>
</div>
<br/>
<br/>
<br/>
<script src="https://d3js.org/d3.v4.min.js"></script>
<!-- jQuery and Bootstrap -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
<script src="script.js"></script>
</body>