ionpak-thermostat/firmware/src/index.html

51 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<title>ionpak</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<body>
<!-- Sidebar -->
<div class="w3-sidebar w3-light-grey w3-bar-block" style="width:15%">
<h3 class="w3-bar-item"><img src="logo.svg"></h3>
<a href="/" class="w3-bar-item w3-button">Measure</a>
<a href="/gauge_settings.html" class="w3-bar-item w3-button">Gauge settings</a>
<a href="/network_settings.html" class="w3-bar-item w3-button">Network settings</a>
</div>
<!-- Page Content --->
<div style="margin-left:15%">
<div class="w3-container w3-teal">
<h1>Measure</h1>
</div>
<div class="w3-container">
<p>Pressure:</p>
</div>
<div class="w3-container w3-xxlarge">
2.3×10<sup>-7</sup> mbar
</div>
<div class="w3-container">
<p>
At local time:
<script language="Javascript">
var date = new Date();
var n = date.toDateString();
var time = date.toLocaleString();
document.write(time);
</script>
</p>
</div>
</div>
</body>
</html>
</body>
</html>