add nav bar to config page

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2023-03-25 23:41:56 +00:00
parent d41162ebae
commit e4a2bdf205

View File

@ -7,9 +7,17 @@
<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/form.css" type="text/css">
<link rel="stylesheet" href="css/buttons.css" type="text/css">
<script src="scripts/config.js" type="module"></script>
</head>
<body>
<header>
<nav>
<a href="index.html" aria-current="true">INSTANCES</a>
<a href="login.html">LOGOUT</a>
</nav>
</header>
<main>
<h3 id="name"></h3>
<div class="center-div">
<form>
@ -33,5 +41,7 @@
</fieldset>
</form>
</div>
</main>
<footer><p>&copy; tronnet</p></footer>
</body>
</html>