mirror of
https://github.com/shouptech/tempgopher.git
synced 2026-02-03 08:39:43 +00:00
Also fixes a bug that the new value wasn't getting copied to the new config Fixes #18
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Temp Gopher</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
|
|
<link rel="stylesheet" href="css/normalize.css">
|
|
<link rel="stylesheet" href="css/skeleton.css">
|
|
<link rel="stylesheet" href="css/custom.css">
|
|
<link rel="icon" type="image/png" href="img/favicon.png">
|
|
<script src="js/jquery.min.js"></script>
|
|
<script src="/jsconfig.js"></script>
|
|
<script src="js/thermostat.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row" style="margin-top: 5%">
|
|
<h3>Thermostats</h3>
|
|
</div>
|
|
</div>
|
|
<div class="container" id="thermostats"></div>
|
|
<div class="container">
|
|
<div class="row" style="margin-top: 10rem">
|
|
<h6 id="version"></h6>
|
|
</div>
|
|
<div class="row">
|
|
<div class="one columns offset-by-eleven" id="logoutDiv"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|