This commit is contained in:
William 2023-02-10 13:38:10 +01:00
commit f541f224b7
2 changed files with 46 additions and 0 deletions

46
index.html Normal file
View File

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>rns sim</title>
</head>
<body style="
margin: 0;
background: #fff;
font-size: 1rem;
font-family: sans-serif;
">
<div id="loading" style="
background: #000000a0;
position: absolute;
height: 100%;
width: 100%;
text-align: center;
padding-top: 50vh;
color: #fff;
">Loading</div>
<div style="
background: #eef;
padding: .5rem;
">RNS Simulator
<button>Add node</button>
<button>Add client</button>
</div>
<table>
<tr>
<th>Name</th>
<th>Status</th>
</tr>
<tr>
<td>Node01</td>
<td>Online</td>
</tr>
</table>
</body>
</html>

0
rnssim.py Normal file
View File