36 lines
646 B
HTML
36 lines
646 B
HTML
<!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 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> |