-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdashboard.html
43 lines (43 loc) · 1.89 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
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="img/icon-6.png" sizes="6x6">
<link rel="icon" type="image/png" href="img/icon-12.png" sizes="12x12">
<link rel="icon" type="image/png" href="img/icon-18.png" sizes="18x18">
<link rel="icon" type="image/png" href="img/icon-24.png" sizes="24x24">
<link rel="icon" type="image/png" href="img/icon-48.png" sizes="48x48">
<link rel="icon" type="image/png" href="img/icon-60.png" sizes="60x60">
<link rel="icon" type="image/png" href="img/icon-120.png" sizes="120x120">
<link rel="icon" type="image/png" href="img/icon-180.png" sizes="180x180">
<link rel="icon" type="image/png" href="img/icon-240.png" sizes="240x240">
<link rel="icon" type="image/png" href="img/icon-480.png" sizes="480x480">
<link rel="icon" type="image/png" href="img/icon-516.png" sizes="516x516">
<link href="style.css" rel="stylesheet" type="text/css">
<script defer src="https://apis.google.com/js/api.js"></script>
<script type="module" src="dashboard.js"></script>
<script async type="module" src="menu.js"></script>
<title>Aleth</title>
<div id="main">
<table id="dashboard">
<thead>
<tr>
<th></th>
<th class="date">Created</th>
<th class="date">Edited</th>
<th class="date">Due</th>
<th class="date">Last revision</th>
</tr>
</thead>
<tbody id="dashboard-body">
</tbody>
</table>
</div>
<div id="menu" style="display:none;">
<div onclick="location.href='.'">Home</div>
<div id="drive-in" style="display:none;">Enable synchronization with Google Drive</div>
<div id="drive-out" style="display:none;">Sign out of Google Drive</div>
<div onclick="location.href='edit.html'">Create new card</div>
<div onclick="location.href='about.html'">About Aleth</div>
</div>
<button id="hamburger" type="button">☰</button>