2021-12-25 07:24:22 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>API Guesser</title>
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
|
|
|
|
<script src="script.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<h2 class="text-center mt-5">API Guesser</h2>
|
2021-12-28 05:54:54 +00:00
|
|
|
<h6 class="text-center mt-2 mb-5">Made by <a href="https://github.com/daffainfo" target="_blank">Muhammad Daffa</a></h6>
|
2021-12-25 07:24:22 +00:00
|
|
|
<input type="text" name="search" id="search" placeholder="Input your API Key / Token" class="form-control"/>
|
2021-12-28 05:54:54 +00:00
|
|
|
<p class="mt-3 text-break" id="count"></p>
|
2021-12-25 07:24:22 +00:00
|
|
|
<div class="row" id="result"></div>
|
2021-12-28 05:54:54 +00:00
|
|
|
<h6 class="text-center mt-5">Source: <a href="https://github.com/daffainfo/all-about-apikey" target="_blank">All-About-API</a></h6>
|
2021-12-25 07:24:22 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|