-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlog.html
40 lines (34 loc) · 1.04 KB
/
log.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Complete log of OBD messages</title>
<link rel="stylesheet" href="css/log.css">
<script src="https://lib.sinaapp.com/js/jquery/2.0.2/jquery-2.0.2.min.js"></script>
<script src="sdk/pojo.js"></script>
<script src="sdk/obdapi.js"></script>
<script src="sdk/util.js"></script>
<script src="sdk/wallet.js"></script>
<script src="js/common.js"></script>
</head>
<body>
<!-- Header -->
<div class="top">
<div>
<label>Complete log of OBD messages</label>
<label class="topDataKey">Logged In:</label>
<label class="topDataVal" id="log_page_logined">No One</label>
</div>
</div>
<!-- Content in middle of page -->
<div>
<pre id="log"></pre>
</div>
<!-- Footer for display copyright info, etc. -->
<div class="copyright">Copyright © OmniLab</div>
</body>
<script>
showLog();
</script>
</html>