-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
36 lines (36 loc) · 1.15 KB
/
index.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
<html>
<head>
<title>gh: checker/api</title>
</head>
<style>
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 16px;
display: flex;
}
.wrapper {
width: 75%;
margin: 0 auto;
align-self: center;
text-align: center;
}
.links > a,span { display:block; }
</style>
<body>
<div class="wrapper">
<h1>Username Checker API</h1>
<div>(Base Route)</div>
<p>
This is the base route for the checker api, aka the Penguin API.
I don't intend on making this page pretty as I don't have a lot of time anymore.
However, if you want to contribute, the project is open-source on GitHub. Just fork it and submit a pull request.
</p>
<div class="links">
<a href="/gh">GitHub Repository</a>
<span><a href="/docs">API Documentation</a> via Swagger</span>
</div>
</div>
</body>
</html>