-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
61 lines (59 loc) · 1.91 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<style>
button {
margin:10px;
padding:5px;
outline: none;
align-self: auto;
}
td,th {
color: black;
}
</style>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="buttons.css"/>
<script src="jquery-2.1.4.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.8.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.8.0/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.8.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.8.0/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.6/firebase-firestore.js"></script>
<script src="config.js"></script>
<script src="sites.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div id="button_row">
<button id="options" class="pure-button">Options</button>
<button id="clear" class="pure-button">Clear</button>
</div>
<div id="lastClear"></div>
<div id="nextClear"></div>
<div>
<table id="stats">
<thead>
<tr>
<th scope="col">Site</th>
<th scope="col">Time</th>
<th scope="col">Percent</th>
</tr>
</thead>
<tbody id="stats_tbody"></tbody>
</table>
</div>
<div>
<button><a href="./videoRecord.html" target="blank">Start Video Montioring</a></button>
</div>
<div>
<video id="video" width="0" height="0" autoplay></video>
<div id="timer">00:00</div>
<button id="start">Start</button>
<button id="stop">Stop</button>
<button id="download">Download</button>
<script src="./init-firebase.js"></script>
<script src="./videoRecord.js"></script>
</div>
</body>
</html>