-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdashboard.html
35 lines (32 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Email List Page</title>
<link href="lib/tabulator/css/semantic-ui/tabulator_semantic-ui.min.css" rel="stylesheet" />
<link href="css/dashboard.css" rel="stylesheet" />
<script type="text/javascript" src="lib/tabulator/js/tabulator.min.js"></script>
<script type="text/javascript" src="lib/xlsx.full.min.js"></script>
<script src="lib/fetch.umd.js"></script>
<script src="lib/jquery-3.1.1.min.js"></script>
<script src="js/util.js"></script>
<script src="auth/config.js"></script>
<script src="auth/pay/rolecheck.js"></script>
</head>
<body>
<div id="maincontent">
<div id="content">
<div style="display: flex; flex-direction: row; gap: 20px;">
<div style="display: flex; gap: 20px;">
<button id="download-csv">Download CSV</button>
<button id="download-xlsx">Download XLSX</button>
</div>
<div><span id="accountinfo" style="font-weight: bold; font-size: 16px;"></span></div>
</div>
<div><span id="datastatus" style="color: red;"></span></div>
<div id="example-table"></div>
</div>
</div>
</body>
<script src="js/dashboard.js"></script>
</html>