2022-12-11 02:02:29 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2023-04-06 22:31:39 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2022-12-11 02:02:29 +00:00
|
|
|
<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">
|
2023-04-11 21:38:51 +00:00
|
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
|
|
<link rel="stylesheet" href="css/style.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-04-11 21:38:51 +00:00
|
|
|
<header class="w3-black w3-bar">
|
|
|
|
<nav class="w3-large w3-bar" id="nav">
|
2023-04-11 21:42:59 +00:00
|
|
|
<h1 class="w3-bar-item w3-mobile w3-hide-small" style="font-size: 18px; margin: 0px; background-color: #0f0; color: #000;">tronnet</h1>
|
|
|
|
<a class="w3-bar-item w3-mobile w3-button" href="index.html" aria-current="true">Instances</a>
|
|
|
|
<a class="w3-bar-item w3-mobile w3-button" href="account.html">Account</a>
|
|
|
|
<a class="w3-bar-item w3-mobile w3-button" href="login.html">Logout</a>
|
2023-04-06 03:46:39 +00:00
|
|
|
</nav>
|
2023-01-09 22:36:50 +00:00
|
|
|
</header>
|
2023-04-11 21:38:51 +00:00
|
|
|
<main class="w3-container">
|
|
|
|
<h2>Instances</h2>
|
2023-04-03 22:49:24 +00:00
|
|
|
<div id="instance-container">
|
2023-02-21 21:52:57 +00:00
|
|
|
</div>
|
|
|
|
<div class="center-div" style="text-align: center;">
|
2023-02-23 21:11:43 +00:00
|
|
|
<img id="instance-add" src="images/actions/instance/add-instance.svg" class="clickable" alt="Create New Instance" title="Create New Instance">
|
2023-02-21 21:52:57 +00:00
|
|
|
</div>
|
2023-02-21 21:50:54 +00:00
|
|
|
</main>
|
2022-12-11 02:02:29 +00:00
|
|
|
</body>
|
|
|
|
</html>
|