apiguesser-web/index.html

33 lines
1.3 KiB
HTML
Raw Normal View History

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="https://markdown-it.github.io/markdown-it.js"></script>
<script src="script.js"></script>
<style>
.link-class:hover {
background-color: #d1d1d1;
}
</style>
</head>
<body>
<div class="container">
<h2 class="text-center mt-5">API Guesser</h2>
<h6 class="text-center mt-2 mb-5">Made by Muhammad Daffa</h6>
<input type="text" name="search" id="search" placeholder="Input your API Key / Token" class="form-control"/>
<p class="mt-3" id="count"></p>
<!-- <div id="content"></div>
<script>
document.getElementById('content').innerHTML =
marked.parse('#### Marked in the browser\n\nRendered by **marked**.');
</script> -->
<div class="row" id="result"></div>
<div id="output"></div>
</div>
</body>
</html>