-
Notifications
You must be signed in to change notification settings - Fork 0
/
datahistory.html
93 lines (88 loc) · 3.49 KB
/
datahistory.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<link href="bootstrap-5.1.3-dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="src/css/index.css" rel="stylesheet" />
<title>Data History</title>
</head>
<body>
<nav class="navbar navbar-dark p-0 bg-black">
<div class="container">
<span class="navbar-brand m-0 fs-4 fw-bold"
>Fire Detection Dashboard</span
>
</div>
</nav>
<main class="container">
<div class="row justify-content-center">
<div class="col-lg-10 col">
<div class="container">
<div class="row mt-4 mb-2">
<div class="col">
<a
href="/index.html"
class="text-decoration-none text-black fs-3 fw-bold"
><svg
xmlns="http://www.w3.org/2000/svg"
width="25"
height="25"
fill="Black"
class="bi bi-arrow-left-square-fill mx-2"
viewBox="0 0 16 16"
>
<path
d="M16 14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12zm-4.5-6.5H5.707l2.147-2.146a.5.5 0 1 0-.708-.708l-3 3a.5.5 0 0 0 0 .708l3 3a.5.5 0 0 0 .708-.708L5.707 8.5H11.5a.5.5 0 0 0 0-1z"
/></svg
>Back</a
>
</div>
</div>
<div class="row">
<div class="col">
<h1 class="text-center text-black fs-3 fw-bold">
Tabel 100 Data History Terbaru
</h1>
</div>
</div>
<div class="row">
<div class="col">
<table class="table">
<thead>
<tr class="text-center">
<th scope="col">#</th>
<th scope="col">Sys device</th>
<th scope="col">Humidity</th>
<th scope="col">Temperature</th>
<th scope="col">Gas density</th>
<th scope="col">flame</th>
<th scope="col">someone need help</th>
<th scope="col">time</th>
</tr>
</thead>
<tbody id="content"></tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="p-2 text-center bg-black">
<p class="m-0 text-white fw-bold fs-5">Shazi Awaludin © 2021</p>
</footer>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="bootstrap-5.1.3-dist/js/bootstrap.bundle.min.js"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
-->
<!-- my own javascript -->
<script src="src/js/datahistory.js"></script>
</body>
</html>