3f3918d0ac
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
46 lines
1.4 KiB
HTML
46 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>tronnet - client</title>
|
|
<link rel="icon" href="images/favicon.svg" sizes="any" type="image/svg+xml">
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
|
<link rel="stylesheet" href="css/button.css" type="text/css">
|
|
<script src="scripts/index.js" type="module"></script>
|
|
<script src="scripts/instance.js" type="module"></script>
|
|
<style>
|
|
#instance-container {
|
|
display: grid;
|
|
grid-template-columns: auto auto 1fr;
|
|
}
|
|
instance-obj {
|
|
display: contents;
|
|
}
|
|
instance-obj:after, instance-obj:first-child:before {
|
|
content: " ";
|
|
border-bottom: 1px solid var(--content-txt-color);
|
|
grid-column: 1 / span 3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>tronnet</h1>
|
|
<hr>
|
|
<nav>
|
|
<a href="index.html" aria-current="true">Instances</a>
|
|
<a href="account.html">Account</a>
|
|
<a href="login.html">Logout</a>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<div id="instance-container">
|
|
</div>
|
|
<div class="center-div" style="text-align: center;">
|
|
<img id="instance-add" src="images/actions/instance/add-instance.svg" class="clickable" alt="Create New Instance" title="Create New Instance">
|
|
</div>
|
|
</main>
|
|
<footer><p>© tronnet</p></footer>
|
|
</body>
|
|
</html> |