-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (69 loc) · 2.21 KB
/
index.html
File metadata and controls
69 lines (69 loc) · 2.21 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" integrity="sha256-h20CPZ0QyXlBuAw7A+KluUYx/3pK+c7lYEpqLTlxjYQ=" crossorigin="anonymous" />
<link rel="stylesheet" href="style.css">
<<<<<<< HEAD
<script defer src="script.js"></script>
<script defer src="userAuth.js"></script>
=======
<script defer src="face-api.js"></script>
<script defer src="script.js"></script>
>>>>>>> 7abb356fe893502e4d3e177b13c38d77805e7ec1
</head>
<body>
<div class="container">
<div class="bg1" onclick="openFaceRecognition()">
<h2><i class="fa fa-camera" style="font-size:36px"></i></h2>
<p>Face Recognition</p>
</div>
<div class="bg1" onclick="updateChargeInfo()">
<h2><i class="fas fa-battery-three-quarters"></i></h2>
<p id="batteryLevel"></p>
</div>
<div class="bg2">
<h2><i class="fas fa-running"></i></h2>
<p>Miles</p>
</div>
<div class="bg1">
<h2 id="temperature"> </h2>
<p>Temperature</p>
</div>
<div class="bg1">
<h2><i class="fas fa-bed"></i></h2>
<p>Sleep Keep</p>
</div>
<div class="bg2" onclick="openAuthPage()">
<h2><i class="fa fa-home" style="font-size:48px;color:white"></i></h2>
<p>Sign In</p>
</div>
<div class="bg1">
<h2>170 <span>lbs</span></h2>
<p>Weight</p>
</div>
<div class="bg1">
<h2>28 <span>%</span></h2>
<p>Fat Percentage</p>
</div>
<div class="bg2">
<h2>118 <span>mgdl</span></h2>
<p>Blood Glucose</p>
</div>
<div class="bg2">
<h2>680 <span>kcal</span></h2>
<p>AVG Consumption</p>
</div>
<div class="bg2">
<h2><i class="fas fa-dumbbell"></i></h2>
<p>Workouts</p>
</div>
<div class="bg2">
<h2>85 <span>%</span></h2>
<p>Body Hydration</p>
</div>
</div>
</body>
</html>