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-04-05 22:29:15 +00:00
|
|
|
<link rel="stylesheet" href="css/button.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>
|
2023-04-03 22:49:24 +00:00
|
|
|
<style>
|
|
|
|
#instance-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto 1fr;
|
|
|
|
}
|
|
|
|
instance-obj {
|
|
|
|
display: contents;
|
|
|
|
}
|
|
|
|
instance-obj:after, instance-obj:first-child:before {
|
|
|
|
content: " ";
|
2023-04-03 22:59:36 +00:00
|
|
|
border-bottom: 1px solid var(--content-txt-color);
|
2023-04-03 22:49:24 +00:00
|
|
|
grid-column: 1 / span 3;
|
|
|
|
}
|
|
|
|
</style>
|
2022-12-11 02:02:29 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-01-09 22:36:50 +00:00
|
|
|
<header>
|
2023-03-25 23:38:15 +00:00
|
|
|
<nav>
|
|
|
|
<a href="index.html" aria-current="true">INSTANCES</a>
|
2023-04-03 21:57:03 +00:00
|
|
|
<a href="resources.html">RESOURCES</a>
|
2023-03-25 23:38:15 +00:00
|
|
|
<a href="login.html">LOGOUT</a>
|
2023-01-09 22:43:48 +00:00
|
|
|
</nav>
|
2023-01-09 22:36:50 +00:00
|
|
|
</header>
|
2023-02-21 21:50:54 +00:00
|
|
|
<main>
|
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>
|
2023-03-25 23:38:15 +00:00
|
|
|
<footer><p>© tronnet</p></footer>
|
2022-12-11 02:02:29 +00:00
|
|
|
</body>
|
|
|
|
</html>
|