2022-12-11 02:02:29 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>tronnet - client</title>
|
2023-01-28 00:30:46 +00:00
|
|
|
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
|
2022-12-13 00:27:45 +00:00
|
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
2023-01-09 22:37:32 +00:00
|
|
|
<script src="scripts/index.js" type="module"></script>
|
2023-02-14 21:08:48 +00:00
|
|
|
<script src="scripts/instance.js" type="module"></script>
|
2022-12-11 02:02:29 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-01-09 22:36:50 +00:00
|
|
|
<header>
|
2023-01-09 22:53:29 +00:00
|
|
|
<nav class="btn-group">
|
2023-01-09 23:08:45 +00:00
|
|
|
<button id="instances" class="active">INSTANCES</button>
|
|
|
|
<button id="logout">LOGOUT</button>
|
2023-01-09 22:43:48 +00:00
|
|
|
</nav>
|
2023-01-09 22:36:50 +00:00
|
|
|
</header>
|
2023-01-09 22:43:48 +00:00
|
|
|
<main><div id="instance-container" class="center-div"></div></main>
|
2022-12-11 02:02:29 +00:00
|
|
|
</body>
|
|
|
|
</html>
|