-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
47 lines (45 loc) · 1.13 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Google Meet Logger</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<table class="logger-table" border="1">
<thead class="logger-header">
<tr>
<td class="logger-name">이름</td>
<td class="logger-report">접속 기록</td>
<td class="logger-status">현재 상태</td>
</tr>
</thead>
<tbody class="logger-body">
<tr class="logger-body">
<td class="logger-name">{{name}}</td>
<td class="logger-report">
<div class="report-body d-inline-block">
<div class="connect offline">
Dis
</div>
<div class="time">
12:21:23
</div>
</div>
<div class="report-body d-inline-block">
<div class="connect online">
Con
</div>
<div class="time">
12:21:23
</div>
</div>
</td>
<td class="logger-status"></td>
</tr>
</tbody>
</table>
<script src="/static/js/main.js"></script>
</body>
</html>