Added "where tf is Jason" page

This commit is contained in:
Jason Williams 2018-08-02 11:18:12 -06:00
parent 95e1e98c6f
commit 79a774c79e
1 changed files with 34 additions and 0 deletions

34
www/where/index.php Normal file
View File

@ -0,0 +1,34 @@
<?php
$options = array(
'http' => array(
'method' => 'GET',
'header' => 'x-ha-access: nXa7LiR1PG'
)
);
$context = stream_context_create($options);
$data = json_decode(file_get_contents("http://192.168.0.25:8123/api/states", false, $context), true);
foreach($data as $item) {
$output[$item["entity_id"]] = $item;
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Welcome to JnF.me</title>
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:300' rel='stylesheet' type='text/css'>
<style type="text/css">
* {margin: 0; border: 0; padding: 0; font-family: 'Source Sans Pro', sans-serif; font-weight: 300; text-align: center;}
html, body {height: 100%; min-height: 100%;}
body {background-color: #333333;}
p {font-size: 10vh;}
h1 {font-size: 20vh; color: #FFFFFF;}
</style>
<body>
<p>Where tf is Jason?</p>
<h1><?= ucwords($output['device_tracker.jasonsphone_jason']['state']) ?></h1>
</body>
</html>