-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.html
99 lines (93 loc) · 3.49 KB
/
data.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Sharp" rel="stylesheet">
<link rel="stylesheet" href="/styles/style.css">
<title>Data | The Bit</title>
</head>
<body>
<div class="container">
<!-- SideBar Section -->
<aside>
<div class="toggle">
<div class="logo">
<img src="images/logo.png">
<h2>Bit<span class="danger">Lab</span></h2>
</div>
<div class="close" id="close-btn">
<span class="material-icons-sharp">close</span>
</div>
</div>
<div class="sidebar">
<a href="./index.html">
<span class="material-icons-sharp">dashboard</span>
<h3>Dashboard</h3>
</a>
<a href="./bots.html">
<span class="material-icons-sharp">
smart_toy
</span>
<h3>Bots</h3>
</a>
<a href="./users.html">
<span class="material-icons-sharp">person_outline</span>
<h3>Users</h3>
</a>
<a href="./history.html">
<span class="material-icons-sharp">receipt_long</span>
<h3>History</h3>
</a>
<a href="./analytics.html">
<span class="material-icons-sharp">insights</span>
<h3>Analytics</h3>
</a>
<a href="./ticket.html">
<span class="material-icons-sharp">mail_outline</span>
<h3>Tickets</h3>
<span class="message-count">1</span>
</a>
<a href="./data.html" class="active">
<span class="material-icons-sharp">inventory</span>
<h3>Data</h3>
</a>
<a href="./settings.html">
<span class="material-icons-sharp">settings</span>
<h3>Settings</h3>
</a>
<a href="./login.html">
<span class="material-icons-sharp">logout</span>
<h3>Logout</h3>
</a>
</div>
</aside>
<!-- End of SideBar Here-->
<!-- Main Content -->
<!-- Right Selection -->
<div class="right-selection">
<div class="nav">
<button id="menu-btn">
<span class="material-icons-sharp">menu</span>
</button>
<div class="dark-mode">
<span class="material-icons-sharp active">light_mode</span>
<span class="material-icons-sharp">dark_mode</span>
</div>
<div class="profile">
<div class="info">
<p>Hey, <b>User</b></p>
<small class="text-muted">Role</small>
</div>
<div class="profile-photo">
<img src="images/profile-1.jpg">
</div>
</div>
</div>
<!-- End of Nav-->
</div>
</div>
<script src="/js/theme.js"></script>
<script src="/js/index.js"></script>
</body>
</html>