-
Notifications
You must be signed in to change notification settings - Fork 1
/
dashboard.html
30 lines (30 loc) · 1.07 KB
/
dashboard.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
<html>
<head>
<title>Analytics Dashboard</title>
<!-- update the version number as needed -->
<script defer src="/__/firebase/6.6.1/firebase-app.js"></script>
<!-- include only the Firebase features as you need -->
<script defer src="/__/firebase/6.6.1/firebase-auth.js"></script>
<script defer src="/__/firebase/6.6.1/firebase-database.js"></script>
<!-- initialize the SDK after all desired features are loaded -->
<script defer src="/__/firebase/init.js"></script>
<script src='https://code.jquery.com/jquery-3.2.1.js'></script>
</head>
<body>
<h1>Analytics Dashboard</h1>
<div><a href="/sample/" target="_blank">Test tracking page</a></div>
<section>
<h2>Total Visitors: <span id="total-visitors"></span></h2>
</section>
<section>
<h2>Active Visitors</h2>
<ul id="active-visitors"></ul>
</section>
<section>
<h2>Past Visitors</h2>
<ul id="past-visitors"></ul>
</section>
<script src='./config.js' defer></script>
<script src='./dashboard.js' defer></script>
</body>
</html>