1625e4ec8f
Migration includes: * A move away from being a SPA to have actual endpoints * Every page is generated via Jinja2Template * Added observability class to export metrics and logs to opentelemetry to integrate with observability stack * Let's database cache what the current status of all VMs are instead of using a dict to allow more multiple workers reading from a single source * The vm status API check to proxmox not caches authentication header for an hour instead of requesting a new header everytime it makes a request every thirty seconds. * Updated front end to be more WCAG compatible but it's still WIP
25 lines
845 B
HTML
25 lines
845 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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="/static/favicon.ico">
|
|
<title id="title">Student Proxy Access</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>Student Proxy Access</h1>
|
|
<span id="bannerUserid"></span>
|
|
</header>
|
|
<nav id="sidebarNav" class="sidebar">
|
|
<h2 id="sidebarHeader">Virtual Machines</h2>
|
|
<div id="powermenu" class="powermenu"></div>
|
|
<ul id="sidebarList">
|
|
</ul>
|
|
</nav>
|
|
<div id="mainContent" class="content" role="main"></div>
|
|
<script type="module" src="/static/scripts.js"></script>
|
|
</body>
|
|
</html>
|