-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.02 KB
/
index.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
55
56
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>BitLox Web</title>
<link href="css/fonts.css" media="screen" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700&subset=cyrillic,latin' rel='stylesheet' type='text/css'>
<link href="css/bitlox.css" media="screen" rel="stylesheet">
<link href="img/favicon.ico" id="page_favicon" rel="icon" type="image/x-icon">
<script src="js/detectPlugin.js"></script>
</head>
<body>
<nav class="redMainNav">
<div class="center">
<img src="img/bitlox.png" alt="bitlox logo"/>
<div class="web">web</div>
</div>
</nav>
<div class="content center">
<div class="actionImg">
<img src="img/installBitlox.png" alt="bitlox logo"/>
</div>
<div class="smallCenter">
<h1>Hi, you're almost there!</h1>
<p>Please install Bitlox™ plugin to allow you browser to talk with your device.</p>
<br/><br/>
<p>Choose your operating system:</p>
<br/>
</div>
<div class="buttonsLine">
<button class="download" onclick="getFile(true)">
<span style="font-family:'FontAwesome Regular', 'FontAwesome';"></span>
<span style="font-family:'Roboto';"> Mac OS X</span>
</button>
<span>or</span>
<button class="download" onclick="getFile(false)">
<span style="font-family:'FontAwesome Regular', 'FontAwesome';"></span>
<span style="font-family:'Roboto';"> Windows</span>
</button>
</div>
</div>
<footer class="loadPlugin">
<div class="center">
<div class="fl">© 2015 Bitlox™ — The ONLY Bluetooth Bitcoin Wallet</div>
<div class="fr">Safest, wireless, powered!</div>
</div>
</footer>
<iframe id="invisible" style="display:none;"></iframe>
<script type="text/javascript">
function getFile(apple) {
var iframe = document.getElementById('invisible');
iframe.src = apple?"files/bitlox_plugin.dmg":"files/hidapiBrowserPlugin.msi";
}
</script>
</body>
</html>