-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (47 loc) · 1.84 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
57
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, user-scalable=no,
shrink-to-fit=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
<title>iBeacon Scan</title>
<style>
@import 'ui/css/evothings-app.css';
@import 'ui/css/custom.css';
</style>
<script>
// Redirect console.log to Evothings Workbench.
if (window.hyper && window.hyper.log) { console.log = hyper.log }
</script>
<script src="cordova.js"></script>
<script src="libs/jquery/jquery.js"></script>
<script src="libs/evothings/evothings.js"></script>
<script src="libs/evothings/ui/ui.js"></script>
<script src="app.js"></script>
</head>
<body>
<header>
<!-- <button class="back" onclick="history.back()">
<img src="ui/images/arrow-left.svg" />
</button> -->
<img class="logotype" src="ui/images/logos.png" alt="X-Day Team" width="40%" height="100%"/>
<!--<button class="menu" onclick=""><img src="ui/images/menu.svg" /></button>-->
</header>
<div class="flex-container">
<strong style="color: red">Sản Phẩm Gần Đây</strong>
</div>
<div class="flex-container">
<p id="warning"><img src="./loading.gif" style="height: 75%; width: 75%; margin-left: 37px"></p>
</div>
<ul id="found-beacons" class="dynamic"></ul>
<!-- <img src="ui/images/galaxy.jpg" class="img-responsive"> <br/> -->
<!-- Script -->
<!-- <script>
$.get("https://api.mongolab.com/api/1/databases/xday/collections/api?apiKey=39W5tASGIy80w7ICf2_Yzn_tEuzeq3k6", function(data, status){
alert("Data: " + data[0].uuid + "\nStatus: " + status);
});
</script> -->
</body>
</html>