-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
57 lines (44 loc) · 2.82 KB
/
about.html
File metadata and controls
57 lines (44 loc) · 2.82 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
</head>
<body>
<div style=" width: 100%; height: 100%; background-color: #242a36; display: flexbox; flex-direction: column;">
<div
style=" padding:5px; width: 100%; height: 100%; background-color: #242a36; display: flexbox; flex-direction: column; border: 2px solid #19819Fff; text-align: center;">
<nav
style=" width: 100%; height: 100%; background-color: black; display: flex; align-self: center; align-items: center; flex-wrap: wrap; flex-direction: row; text-align: center;">
<li style="flex-grow: 1; border: 3px solid 19819Fff;"><a href="/api/About"
style="color: #025B79ff; font-weight:200; font-size:x-large; cursor: pointer; ">About</a></li>
<li style="flex-grow: 1; border: 3px solid 19819Fff; "><a href="/api/Endpoints"
style="color: #025B79ff; font-weight:200; font-size:x-large; cursor: pointer; ">Endpoints</a>
</li>
<li style="flex-grow: 1; border: 1px solid 19819Fff; "><a href="/api/Contact"
style="color: #025B79ff; font-weight:200; font-size:x-large; cursor: pointer; ">Contact</a>
</li>
</nav>
<h1 style="color:#AEBEBEff"> GMA api 🔥</h1>
<h1 style="color:#AEBEBEff ; border-top: 1px solid white"> About</h1>
<p style="color:#AEBEBEff"> The gmdevapi was build with the purpose of
security, re-usability, and ease in mind. It is part of our project ecosystem and
was originally developed for my applications. We made the API available
publically as a proof of concept and ease of use. Anyone can call the
api via HTTP requests to cloudflare. We have implemented standard
security measures to protect our own application
as well as 3rd party API's. This is what enables our API to be public
facing without Authorization. The API has various endpoints for features
of our current applications. We plan on adding more routes later.
</p>
<p style="color:#AEBEBEff"> If you would like to fork or use our API
please give proper credit. You must also give credit to 3rd party
applications involved and respect their TOS.
</p>
<h3 style="color:#AEBEBEff"> Built with Cloudflare workers </h3>
<h3 style="color:#AEBEBEff; padding-bottom: 5px;"> Source Code maintained on Gitub </h3>
<h4 style="padding-top: 5px;color:#AEBEBEff; border-top: 1px solid white;"> Site preview </h4>
</div>
</body>
</html>