-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·48 lines (44 loc) · 1.44 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
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<title>Entropy Dashboard</title>
<meta name="theme-color" content="#c31432" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.min.js"> </script>
</head>
<body>
<style>
.shadow {
box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.06) !important;
}
.top-bar {
height: 3px;
width: 100%;
background: linear-gradient(to right, #c31432, #240b36);
}
</style>
<div class="top-bar"></div>
<nav class="navbar navbar-expand-lg text-white bg-light shadow">
<a class="navbar-brand text-danger" href="#">Entropy</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
<div class="m-3">
<table class="table table-bordered small">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Type</th>
<th scope="col">Details</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody id="table-data"></tbody>
</table>
</div>
</body>
<script src="script.js"></script>
</html>