56 lines
2.5 KiB
HTML
Executable File
56 lines
2.5 KiB
HTML
Executable File
<html>
|
||
<meta charset="utf-8">
|
||
<title>Live</title>
|
||
<meta http-equiv="refresh" content="10">
|
||
<meta name="description" content="Live">
|
||
<meta name="author" content="mattbk">
|
||
<!-- Mobile Specific Metas
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<!-- FONT
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
|
||
<!-- CSS
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link rel="stylesheet" href="/static/css/normalize.css">
|
||
<link rel="stylesheet" href="/static/css/skeleton.css">
|
||
<!-- Favicon
|
||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||
<link rel="icon" type="image/png" href="/static/images/favicon.png">
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<div class="row">
|
||
<div class="two-third column" style="margin-top: 5%">
|
||
<h2>Real time conditions</h2>
|
||
<h1>Temperature: {{"{0:0.1f}".format(temp) }}°F</h1>
|
||
<h1>Humidity: {{"{0:0.1f}".format(hum)}}%</h1>
|
||
<p>This page refreshes every 10 seconds</p>
|
||
</div>
|
||
</div>
|
||
<div class="row">
|
||
<div class="eleven columns">
|
||
<form id="range_select" action = "/lab_env_db" method="GET">
|
||
<input type="hidden" class="timezone" name="timezone" />
|
||
<div class="one column">
|
||
<a href="/history" style="position:relative;top:15px">Historic</a>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.4/jstz.min.js" ></script>
|
||
<script>
|
||
jQuery( document ).ready(function() {
|
||
timezone = jstz.determine();
|
||
jQuery("#timezone").text(timezone.name());
|
||
});
|
||
jQuery("#range_select input[type=radio]").click(function(){
|
||
timezone = jstz.determine();
|
||
jQuery(".timezone").val(timezone.name());
|
||
jQuery("#range_select").submit();
|
||
});
|
||
</script>
|
||
</html>
|