53 lines
1.7 KiB
HTML
53 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="styles/dashboard-styles.css">
|
|
<title>Gauges</title>
|
|
<script src="https://cdn.plot.ly/plotly-latest.min.js" charset="utf-8"></script>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
|
|
rel="stylesheet">
|
|
</head>
|
|
|
|
<nav class="navbar">
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item">
|
|
<a href="index.html" class="nav-link">Dashboard</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="graphs.html" class="nav-link">Graphs</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="questions-dashboard.html" class="nav-link">Questions</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<button class="nav-button" onclick="settings()">Change node names ⌄</button>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
|
|
<div id="editNode">
|
|
<p id="text">Status updating</p>
|
|
<select id="mySelect"></select>
|
|
<textarea maxlength="44" id="inputName"></textarea>
|
|
<textarea maxlength="44" id="inputLocation"></textarea>
|
|
<button id="button" onclick="changeText()">Change Information</button>
|
|
</div>
|
|
|
|
|
|
<body>
|
|
<script src="GaugGroup.js"></script>
|
|
<script src="graph-classes.js"></script>
|
|
<script src="main.js"></script>
|
|
<script src="text.js"></script>
|
|
<script src="liveGraph.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |