mirror of
				https://github.com/beestat/app.git
				synced 2025-10-31 01:57:01 -04:00 
			
		
		
		
	beestat.io, app.beestat.io, api.beestat.io, demo.beestat.io They all now work and the cookies should behave better. Fixes #134 among other things.
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!doctype html>
 | |
| <html>
 | |
|   <head>
 | |
|     <title>beestat</title>
 | |
|     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 | |
|     <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
 | |
|     <!-- Chrome, Firefox OS and Opera -->
 | |
|     <meta name="theme-color" content="#222222">
 | |
|     <link rel="manifest" href="/manifest.json">
 | |
| 
 | |
|     <link href="css/index.css" rel="stylesheet">
 | |
|     <script async src="https://www.googletagmanager.com/gtag/js?id=UA-10019370-7"></script>
 | |
|   </head>
 | |
|   <body>
 | |
|     <div class="_index">
 | |
|       <main>
 | |
|         <div class="waveform"></div>
 | |
|         <div class="header">
 | |
|           <div class="beestat">
 | |
|             <span class="bee">bee</span><span class="stat">stat</span>
 | |
|           </div>
 | |
|           <div class="log_in">
 | |
|             Log In
 | |
|           </div>
 | |
|         </div>
 | |
|         <div class="connect">
 | |
|           <div class="connect_text">
 | |
|             Connect your thermostat
 | |
|           </div>
 | |
|           <div class="connect_platforms">
 | |
|             <!-- <a href="api/?resource=ecobee&method=authorize&arguments={}&api_key=ER9Dz8t05qUdui0cvfWi5GiVVyHP6OB8KPuSisP2" class="ecobee"></a> -->
 | |
|             <a href="<?php echo 'http://' . str_replace('beestat.io', 'app.beestat.io', $_SERVER['HTTP_HOST']); ?>" class="ecobee"></a>
 | |
|           </div>
 | |
|         </div>
 | |
|         <div class="demo">
 | |
|           <a href="https://demo.beestat.io" target="_blank">Try a Demo</a>
 | |
|         </div>
 | |
|       </main>
 | |
|       <footer>
 | |
|         <div class="footer_text">
 | |
|           Beestat is a free tool intended to help you view and analyze your home HVAC usage and efficiency.<br/>
 | |
|         </div>
 | |
|         <div class="footer_links">
 | |
|           <a href="mailto:contact@beestat.io">Contact</a> •
 | |
|           <a href="privacy/">Privacy</a> •
 | |
|           <a href="http://eepurl.com/dum59r" target="_blank">Mailing List</a> •
 | |
|           <a href="https://github.com/beestat/app/issues" target="_blank">Report Issue</a>
 | |
|         </div>
 | |
|       </footer>
 | |
|     </div>
 | |
|   </body>
 | |
| </html>
 |