Moved the list of VMs to the sidebar menu along with links for the different control views Fixed proper routing Moved away from json to mariadb for user and vm management Fixed instructions for different services
24 lines
759 B
HTML
24 lines
759 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="/static/style.css">
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<title>Student Proxy Access</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>Student Proxy Access</h1>
|
|
<span id="bannerUserid" aria-label="logged in as "></span>
|
|
</header>
|
|
<nav id="sidebarNav" class="sidebar">
|
|
<h2 id="sidebarHeader"></h2>
|
|
<ul id="sidebarList">
|
|
</ul>
|
|
</nav>
|
|
<div id="mainContent" class="content"></div>
|
|
<script type="module" src="/static/scripts.js"></script>
|
|
</body>
|
|
</html>
|