diff options
| author | s1n <[email protected]> | 2019-10-29 16:55:07 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-10-29 16:55:07 -0700 |
| commit | 6645e9f2b12acd66445b33dae1928459f48c4a80 (patch) | |
| tree | eabf40797fe00e5136dbe84180091297a77e9efe | |
| parent | Merge branch 'master' of https://github.com/8cy/s1n.pw-admin (diff) | |
| download | s1n.pw-admin-6645e9f2b12acd66445b33dae1928459f48c4a80.tar.xz s1n.pw-admin-6645e9f2b12acd66445b33dae1928459f48c4a80.zip | |
cut down rate
| -rw-r--r-- | aes/index.html | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/aes/index.html b/aes/index.html index da66840..a1ca04a 100644 --- a/aes/index.html +++ b/aes/index.html @@ -2,23 +2,16 @@ <html lang="en"> <head> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>s1nical - AES</title> - <!-- CSS Links --> - <!-- External Libraries --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> - <!-- Invisible Script Links --> </head> <body> - <!-- Visable Script Links --> - <script src="/ip-detection/js/main.js"></script> - - <h3>Fortnite AES Key</h3> - - <hr /> + <script> + $.get("http://benbotfn.tk:8080/api/aes", function (response) { + $("#ip").html("IP: " + response.aes); + }, "jsonp"); + </script> <div id="aes"></div> </body> |