-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbots.html
135 lines (129 loc) · 4.51 KB
/
bots.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!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>Analytics | 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" class="active">
<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">
<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 -->
<main>
<h1>Bots</h1>
<div class="bots">
<div class="bitmod">
<div class="servers">
<h3>Total Servers</h3>
<h1>0</h1>
</div>
<div class="userss">
<h3>Total Users</h3>
<h1>0</h1>
</div>
<div class="infractions">
<h3>Total Infractions</h3>
<h1>0</h1>
</div>
</div>
</div>
</main>
<!-- End of 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>