-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db4d7c6
commit 799ee3b
Showing
6 changed files
with
192 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<!DOCTYPE html> | ||
|
||
<style> | ||
a { | ||
margin-top: 20px; /* Adjust the value as needed */ | ||
display: inline-block; /* or inline */ | ||
} | ||
h2 { | ||
text-align: center; | ||
} | ||
h6 { | ||
text-align: center; | ||
} | ||
h5 { | ||
text-align: center; | ||
} | ||
h4 { | ||
text-align: center; | ||
} | ||
</style> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="icon" href="Kingdomsingle.ico" type="image/x-icon"> | ||
<title>K/SEC Discord Database</title> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
</head> | ||
<body> | ||
<header class="header-image"> | ||
<img src="Kingdom.png" alt="Kingdom Industries Logo"> | ||
</header> | ||
|
||
<!-- Dark mode toggle button --> | ||
|
||
<div class="center-heading"> | ||
<h1>Welcome to K/SEC, Pilot.<br></h1> | ||
</div> | ||
|
||
|
||
<h2>The most advanced database.</h2> | ||
<h4><i><s>And totally not a doxxing tool</s></i></h3> | ||
<div class="center-container"> | ||
<a href="https://discord.gg/6Bx5yUbFCS"> | ||
<img src="https://discordapp.com/api/guilds/1130249899385028669/widget.png?style=banner3" alt="Discord Banner 3"/> | ||
</a> | ||
</div> | ||
|
||
<h2><br>Introducing K/SEC Databases:<br> Unlocking the Potential of <i><s>the ultimate doxxing tool</s></i> Discord User Data</h2> | ||
<div class="center-heading"> | ||
<h4><br><br>Welcome to K/SEC Databases, a groundbreaking platform <br> developed by Kingdom Industries that aims to revolutionize the way we interact with and utilize Discord user data. <br> Our Discord bot serves as a comprehensive hub for collecting, organizing, and making this valuable information available to everyone. <br> Whether you're a developer, researcher, or simply curious about the vast Discord community, K/SEC Databases<br> is here to empower you with unprecedented insights.</h6> | ||
</h4> | ||
</div> | ||
<div class="center"> | ||
<h4><br><br>At K/SEC Databases, we understand that every Discord user is unique, and that is why our <br> platform goes beyond the basics. We strive to offer a comprehensive set<br> of data points to cater to the diverse needs and preferences of our users.</h4> | ||
</div> | ||
<div> | ||
<h4>We offer everything from basic<br> user information all the way to the users Discord messages.<br> Even if they are deleted</h4> | ||
</div> | ||
<div class="center"> | ||
<h1> <u>How to use our database? </u><br> <br></h1> | ||
</div> | ||
<div> | ||
<h4>Step 1: Join our by clicking <a href=https://discord.gg/6Bx5yUbFCS>Here</a></h4> | ||
</div> | ||
<div> | ||
<h4>Step 2 : Head to the commands channel and run the /user command </h4> | ||
</div> | ||
<div> | ||
<h4>Step 3 : Data you requested will be sent to your dms. </h4> | ||
</div> | ||
<div class="center"> | ||
<h1>I don't see the users messages. Why?</h1> | ||
</div> | ||
<div> | ||
<h4> You've stumbled upon a pro feature. By buying our Pro bot you will get access to features like message logging and access to see the public servers a user is in. <br> I constantly add to this list and this is just the start.</h4> | ||
</div> | ||
<div class="center"> | ||
<h1>What are the limitations?</h1> | ||
</div> | ||
<div class="center"> | ||
<h4>The bot can't be invited to other servers. Its the single server you can use it in. The servers,<br> messages and etc. are only pulled from public servers.<br> Non-discoverable & non-partnered servers will not be indexed. <br> <u>Want to be excluded from the database?</u> By buying the Pro version you will be automatically excluded from <br> all databases and your messages will NOT be saved. You will not appear <br>visible to any user using the bot</h4> | ||
</div> | ||
<script src="script.js"></script> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: Arial, sans-serif; | ||
background-color: #1d1d1d; /* Dark mode background color */ | ||
color: #fff; /* Text color in dark mode */ | ||
} | ||
|
||
header { | ||
background-color: #202020; /* Dark mode header background color */ | ||
padding: 15px; | ||
text-align: center; | ||
} | ||
|
||
header img { | ||
max-width: 300px; | ||
max-height: 300px; | ||
} | ||
|
||
/* Dark mode toggle button */ | ||
#darkModeToggle { | ||
position: fixed; | ||
top: 20px; | ||
right: 20px; | ||
cursor: pointer; | ||
color: #fff; | ||
font-size: 18px; | ||
} | ||
|
||
.center-container { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
max-width: 80%; /* Optional: Adjust the container size if needed */ | ||
} | ||
|
||
.dark-mode { | ||
background-color: #d8d8d8; /* Dark mode background color */ | ||
color: #000000; /* Text color in dark mode */ | ||
} | ||
|
||
.dark-mode header { | ||
background-color: #737373; /* Dark mode header background color */ | ||
} | ||
|
||
.center-left { | ||
display: flex; | ||
justify-content: left; | ||
align-items: center; | ||
height: 10vh; | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.center-heading { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 8vh; | ||
} | ||
|
||
.center { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 10vh; | ||
} | ||
|
||
form { | ||
display: flex; | ||
} | ||
|
||
#searchBar { | ||
padding: 10px; | ||
border: none; | ||
border-radius: 20px 0 0 20px; | ||
outline: none; | ||
} | ||
|
||
.search-button { | ||
padding: 10px 20px; | ||
background-color: #4183D7; | ||
color: #fff; | ||
border: none; | ||
border-radius: 0 20px 20px 0; | ||
cursor: pointer; | ||
} | ||
|
||
.other-items { | ||
/* Add any styles you want for the other items */ | ||
margin-top: 20px; /* Adjust the spacing if desired */ | ||
|
||
/* Add any other styles required for the specific items */ | ||
} | ||
|
||
.header-images { | ||
max-width: 300px; | ||
height: 13vh; | ||
max-height: 300px; | ||
} |