-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsafe.html
54 lines (51 loc) · 2.92 KB
/
safe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" >
<head profile="http://www.w3.org/2005/10/profile">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KY3LCD0Q3N"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KY3LCD0Q3N');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Control your Smart Life or Tuya devices through your web browser.
Download timers and schedules for your switches and smart plugs,
instead of using eWelink app.">
<meta charset="UTF-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="icon" type="image/png" href="short_logo_trans.png">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>SmartAtHome.co.uk - My Smart Life Devices</title>
<script src="https://cdn.jsdelivr.net/jquery/latest/jquery.min.js"></script>
<script src="general_functions.js"></script>
<script>
window.onload = function() {
testFirstCookie();
}
</script>
</head><body>
<center><a href="../index.html"><img src="long_logo.png" alt="smartathome.co.uk logo"></a></center><br /><br />
<h2>Who is SmartAtHome.co.uk?</h2>
SmartAtHome.co.uk is just a hobby site ran by me, Mark. I'm nice, I promise. You can email me at mark<code>@</code>smartathome.co.uk.
<h2>Is it safe to give you my Smart Life username and password?</h2>
Your details are passed straight to Smart Life, in order to get an authorisation token. Without that token, this website can't control your devices. Neither the username, password nor the token are stored or logged on my server.
<h2>Is your website secure?</h2>
Yes, the whole site is served over https, you should see a little padlock symbol in your address bar.
<h2>Why do I have to re-login every day?</h2>
I store a small file, called a cookie, on your computer, with your authorisation token. It expires after a few hours though, so you have to log in again.
<h2>How do I know you don't do anything else with my details?</h2>
The code for this website is open sourced on <a href='https://github.com/ndg63276/smartathome'>GitHub</a>, so anyone can check what I'm doing any time.
<h2>I don't have any Smart Life products.</h2>
I do recommend them, they are well made but pretty inexpensive. They can be controlled via the app, or via IFTTT hooks if you want to try something more advanced. There's also a large community of users out there to help you do more with them.
<div id="myCookieConsent">
<a id="cookieButton" onClick="acceptCookies()">Understood</a>
<div>This website is using cookies. <a href="../cookies.html">More details</a></div>
</div>
</body>
</html>