-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcommands.html
More file actions
69 lines (62 loc) · 2.79 KB
/
commands.html
File metadata and controls
69 lines (62 loc) · 2.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript" src="/scripts/getData.js"></script>
<style>
.nav-pills .nav-link {
background-color: black;
color: white;
border-radius:10px;
border: 1px solid white;
}
.nav-pills .nav-link:hover{
background-color: gray;
}
</style>
<title>Otto's Chat Commands</title>
<!-- Coded by Kenesti -->
</head>
<body>
<div class="container-fluid p-5 bg-black text-white text-center">
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/gear.html">Gear</a>
</li>
</ul>
<h1>Otto's Chat Commands</h1>
</div>
<div class="container mt-3">
<h2>User Commands</h2>
<p>Chat commands that are available to any user.</p>
<button type="button" class="btn btn-dark" data-bs-toggle="collapse" data-bs-target="#user-commands">Click to expand/collapse</button>
<table class="table table-striped table-bordered table-responsive collapse" id="user-commands">
<!-- Content Dynamically filled by JQuery-->
</table>
</div>
<div class="container mt-3">
<h2>Subscriber Commands</h2>
<p>Chat commands that are only available to Otto's subscribers</p>
<button type="button" class="btn btn-dark" data-bs-toggle="collapse" data-bs-target="#sub-commands">Click to expand/collapse</button>
<table class="table table-striped table-bordered table-responsive collapse" id="sub-commands">
<!-- Content Dynamically filled by JQuery-->
</table>
</div>
<div class="container mt-3">
<h2>Moderator Commands</h2>
<p>These commands are only available to Otto's moderators</p>
<button type="button" class="btn btn-dark" data-bs-toggle="collapse" data-bs-target="#mod-commands">Click to expand/collapse</button>
<table class="table table-striped table-bordered table-responsive collapse" id="mod-commands">
<!-- Content Dynamically filled by JQuery-->
</table>
</div>
</body>
</html>