summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authors1n <[email protected]>2019-11-03 16:48:19 -0800
committers1n <[email protected]>2019-11-03 16:48:19 -0800
commitcc6b69f9a357bcf9037641f7949cd9c1a1510e86 (patch)
tree3e1ab60ec78bc865463e1285dc47dccd3eb5d825
parentfix ip detec title (diff)
downloads1n.pw-admin-cc6b69f9a357bcf9037641f7949cd9c1a1510e86.tar.xz
s1n.pw-admin-cc6b69f9a357bcf9037641f7949cd9c1a1510e86.zip
testaes
-rw-r--r--aes-test/index.html33
-rw-r--r--favicon-grabber/index.html84
-rw-r--r--favicon-grabber/js/main.js0
3 files changed, 33 insertions, 84 deletions
diff --git a/aes-test/index.html b/aes-test/index.html
new file mode 100644
index 0000000..cf13894
--- /dev/null
+++ b/aes-test/index.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<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 - :)</title>
+ <!-- CSS Links -->
+ <!-- External Libraries -->
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
+ <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
+ <!-- Invisible Script Links -->
+ <script>
+ $.get("http://benbotfn.tk:8080/api/aes", function (response) {
+ $("#ip").html("IP: " + response.ip);
+ $("#address").html("Location: " + response.city + ", " + response.region);
+ $("#details").html(JSON.stringify(response, null, 4));
+ }, "json");
+ </script>
+ </head>
+
+ <body>
+ <!-- Visable Script Links -->
+
+ <div id="ip" style="text-align: center;"></div>
+ <div id="address" style="text-align: center;"></div>
+ <hr />
+ <h3 style="text-align: center;">Full Response:</h3>
+ <pre id="details" style="text-align: left;"></pre>
+ </body>
+
+</html> \ No newline at end of file
diff --git a/favicon-grabber/index.html b/favicon-grabber/index.html
deleted file mode 100644
index 0ab708f..0000000
--- a/favicon-grabber/index.html
+++ /dev/null
@@ -1,84 +0,0 @@
-<!DOCTYPE html>
-<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 - 404</title>
- <!-- External Links -->
- <script src="https://cdnjs.cloudflare.com/ajax/libs/trianglify/0.3.1/trianglify.min.js"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
- <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
- <!-- CSS Links -->
- <!-- Why am I so dumb, I just found out why the css wasn't working on the 404 with a trailing slash on Stack Overflow, lol, then I
- went through ALL of the files checking if I had any more "./" instead of absolute path and turns out this is the only file I didn't go through...-->
- <link rel="stylesheet" href="/about/css/main.css">
- <link rel="stylesheet" href="/about/css/navigation-bar.css">
- <link rel="stylesheet" href="/about/css/loader-animation.css">
- <link rel="stylesheet" href="/about/css/blog-slider.css">
- <link rel="stylesheet" href="/404/css/main.css">
- <!-- Invisible Links -->
- <script src="/js/loader-animation.js"></script>
- <script src="/js/refresh-on-media.js"></script>
- </head>
-
- <body>
- <!-- Visable Links -->
- <script src="/js/background-sparkles.js"></script>
-
- <!-- Navigation Bar -->
- <div class="navigation-bar">
- <nav class="nav">
- <a href="/" class="nav-item" active-color="orange">Home</a>
- <!-- Had `is-active` after it but removed it due to not highlighting. -->
- <a href="/about/" class="nav-item" active-color="green">About</a> <!-- About -->
- <a href="https://p.s1n.pw/" class="nav-item" active-color="blue">Portfolio</a> <!-- Testimonials -->
- <!--<a href="/doge" class="nav-item" active-color="red">Doge</a> <!-- Blog -->
- <!--<a href="/cars/" class="nav-item" active-color="rebeccapurple">Cars</a> <!-- Contact -->
- <!--<a href="https://nani.s1n.pw" class="nav-item" active-color="rebeccapurple">Nani?!</a>-->
- <span class="nav-indicator"></span>
- </nav>
- </div>
-
- <div class="bio">
- <div class="links">
- <div class="blog-slider">
- <div class="content" style="text-align: center;">
- <h1>404</h1>
- <h2>Page not found</h2>
- <h1>
- <!-- Filler -->
- </h1>
- <a class="mobile" href="/">Back home</a>
- <h1 class="mobile">
- <!-- Filler -->
- </h1>
- </div>
- </div>
- </div>
- </div>
-
- <!-- Loading Animation -->
- <div class="loader-wrapper">
- <div class="loader">
- <row>
- <span></span>
- <span></span>
- <span></span>
- </row>
- <row>
- <span></span>
- <span></span>
- <span></span>
- </row>
- <row>
- <span></span>
- <span></span>
- <span></span>
- </row>
- </div>
- </div>
- </body>
-
-</html>
diff --git a/favicon-grabber/js/main.js b/favicon-grabber/js/main.js
deleted file mode 100644
index e69de29..0000000
--- a/favicon-grabber/js/main.js
+++ /dev/null