-
Notifications
You must be signed in to change notification settings - Fork 2
/
404.html
97 lines (88 loc) · 5.1 KB
/
404.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1">
<title>JDJG's Bot</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="/style.css" rel="stylesheet" type="text/css" />
</head>
<body style="min-height: 100vh; min-height: -webkit-fill-available;">
<nav class="navbar sticky-top navbar-expand-md justify-content-between px-2">
<a class="navbar-brand" href="#">
<!-- <img src="logohere" width="30" height="30" class="d-inline-block align-top" alt="" /> -->
JDBot
</a>
<button class="navbar-toggler navbar-dark" type="button" data-bs-toggle="collapse" data-bs-target="#main-navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="main-navigation">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="/#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/#contact">Contact</a>
</li>
</ul>
<div class="form-inline">
<button class="btn btn-sm btn-outline-secondary my-2 my-sm-0 mx-2" data-bs-toggle="modal" data-bs-target="#InviteModal">
Invite
</button>
</div>
</div>
</nav>
<div class="modal fade" id="InviteModal" tabindex="-1" role="dialog" aria-labelledby="InviteModalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content" style="background-color: orange;">
<div class="modal-header" style="border-bottom:1px solid #8B4000;">
<h5 class="modal-title text-center" id="InviteModalLabel">Invite JDBot</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body text-center imodal-content">
Not all features may work if you invite with minimal perms, if you invite with 0 make sure these permissions are in a Bots/Bot role.
<a class="btn btn-outline-secondary mt-2" target="_blank" href="https://discord.com/oauth2/authorize?client_id=347265035971854337&scope=bot&permissions=8">Full Permissions</a>
<a class="btn btn-outline-secondary mt-2" target="_blank" href="https://discord.com/oauth2/authorize?client_id=347265035971854337&scope=bot&permissions=70634561">Minimal Permissions</a>
</div>
</div>
</div>
</div>
<div class="container mx-4 my-5">
<div class="row my-5">
<div class="col-md-12 text-center my-5">
<h1>404<h1>
<h3>Oops! We think you took a wrong turn.</h3>
<a class="btn btn-secondary" href="javascript:history.back()">Go Back</a>
</div>
</div>
</div>
<footer class="bg-dark text-center text-white">
<!-- Grid container -->
<div class="container p-4 pb-0">
<!-- Section: Social media -->
<section class="mb-4">
<!-- Twitter -->
<a class="btn btn-outline-light btn-floating m-1" href="https://mobile.twitter.com/jdjgbot" role="button" style="border-color: white;"><i class="fab fa-twitter" style="color: white;"></i></a>
<!-- Reddit -->
<a class="btn btn-outline-light btn-floating m-1 text-white" href="https://www.reddit.com/user/JDJGBot/" role="button" style="border-color: white;"><i class="fab fa-reddit" style="color: white;"></i></a>
<!-- Discord -->
<a class="btn btn-outline-light btn-floating m-1 text-white" href="https://discord.gg/eVQH2ZRYpz" role="button" style="border-color: white;"><i class="fab fa-discord" style="color: white;"></i></a>
<!-- Github -->
<a class="btn btn-outline-light btn-floating m-1 text-white" href="https://github.com/JDJGInc/JDBot" role="button" style="border-color: white;"><i class="fab fa-github" style="color: white;"></i></a>
</section>
<!-- Section: Social media -->
</div>
<!-- Grid container -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
Copyright and Crediting
<a class="text-white" href="https://github.com/JDJGInc/JDBot#copyright-concerns-including-the-use-of-this-code">Details</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="/script.js"></script>
</body>
</html>