Rework entire site to host everything on it's own, and not rely on a non-public nginx config for everything
This commit is contained in:
parent
8877ec9be1
commit
d36830a257
46 changed files with 103 additions and 103 deletions
14
index.js
14
index.js
|
@ -176,13 +176,13 @@ function format(seconds){
|
|||
return pad(hours) + ':' + pad(minutes) + ':' + pad(seconds);
|
||||
}
|
||||
app.use(cookieCheck);
|
||||
app.use(express.static(dir + "styles"));
|
||||
app.use(express.static(dir + "audio"));
|
||||
app.use(express.static(dir + "videos"));
|
||||
app.use(express.static(dir + "scripts"));
|
||||
app.use(express.static(dir + "fonts"));
|
||||
app.use(express.static(dir + "icons"));
|
||||
app.use(express.static(dir + "images"));
|
||||
app.use("/styles", express.static(dir + "styles"));
|
||||
app.use("/audio", express.static(dir + "audio"));
|
||||
app.use("/video", express.static(dir + "videos"));
|
||||
app.use("/scripts", express.static(dir + "scripts"));
|
||||
app.use("/fonts", express.static(dir + "fonts"));
|
||||
app.use("/icons", express.static(dir + "icons"));
|
||||
app.use("/images", express.static(dir + "images"));
|
||||
/*
|
||||
app.get("/images/:filename", function(req, res, next) {
|
||||
let path = '/' + req.params.filename;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - About You</title>
|
||||
<link href="style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/abtbrow"></script> -->
|
||||
|
@ -23,6 +23,6 @@
|
|||
<p class="rainbow block">Device Vendor: <%= deviceVendor %></p>
|
||||
<p class="rainbow block">Cookies Enabled: <%= cookiesEnabled %></p>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Raw - <%= fileName %></title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/raw"></script> -->
|
||||
|
@ -13,7 +13,7 @@
|
|||
<% if (!raw) { %>
|
||||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<p class=force-color><%- fileData %></p>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
<% } else { %>
|
||||
<p class="force-color left"><%- fileData %></p>
|
||||
<% } %>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>FP650 - Server Info</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
|
@ -17,6 +17,6 @@
|
|||
<p class=rainbow>Node Uptime: <%= uptime %></p>
|
||||
<p class=rainbow>Total Pages: <%= images %></p>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>FP650 - YCS - History</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
|
@ -23,6 +23,6 @@
|
|||
<% } %>
|
||||
<p class=rainbow>Raw data: <%= raw %></p>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>FP650 - YCS - Queue</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
|
@ -23,6 +23,6 @@
|
|||
<% } %>
|
||||
<p class=rainbow>Raw data: <%= raw %></p>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>FP650 - Youngchief's Spotify</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
|
@ -28,6 +28,6 @@
|
|||
<p class=rainbow>Cover Art:</p>
|
||||
<img src="<%= cal %>" class="no-bounce">
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Calculator</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/calculator"></script> -->
|
||||
|
@ -16,7 +16,7 @@
|
|||
<button class="cyan run-button" onclick="calc()">Run Calculator</button><br/>
|
||||
<span class="force-color">Bookmarklet: </span><span id="access" class="force-color">javascript:x=prompt('Equation?');x=eval(x);alert(`The solution is: ${x}`)</span> <button class="cyan copy-button" onclick="copy('access')">Copy</button><br/>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
<!-- Modified from https://www.geeksforgeeks.org/how-to-create-copy-to-clipboard-button/ /!-->
|
||||
<script>
|
||||
function copy(element) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Cheese</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/cheese"></script> -->
|
||||
|
@ -65,6 +65,6 @@
|
|||
|
||||
move();
|
||||
</script>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Code of Hexics</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/hexics"></script> -->
|
||||
|
@ -29,6 +29,6 @@
|
|||
<p>E. All hail jinn6</p>
|
||||
<p>F. All hail jinn6</p>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Unfinished page</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/construction"></script> -->
|
||||
|
@ -14,6 +14,6 @@
|
|||
<span class="center force-color">
|
||||
<h3 id='Construction' class=center><span class="warning">Page under construction.</span></h3>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - CountAPI spec clone</title>
|
||||
<link href="/countapi.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/atom-one-dark.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/countapi.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/atom-one-dark.min.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/countapi-spec-clone"></script> -->
|
||||
</head>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - DVD Screensaver</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/dvdscreensaver"></script> -->
|
||||
|
@ -87,6 +87,6 @@
|
|||
}
|
||||
move();
|
||||
</script>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Error Debugging</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/error-debug"></script> -->
|
||||
|
@ -19,6 +19,6 @@
|
|||
<br/>
|
||||
<a href="/cause-error-403" class="cyan">Error 403</a>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - You shouldn't be here.</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/hide"></script> -->
|
||||
|
@ -12,6 +12,6 @@
|
|||
<body>
|
||||
<h5 hidden id='Maintenance' class=center></h5>
|
||||
<h4 class="center rainbow">You shouldn't be here.</h4>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Hidden :O</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/hide"></script> -->
|
||||
|
@ -50,7 +50,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<h5 hidden id='Maintenance' class=center></h5>
|
||||
<script src="hidden2.js"></script>
|
||||
<script src="/scripts/hidden2.js"></script>
|
||||
<span class="center rainbow" id='shh'>There should be stuff here in a second. If there's not, then reload. (Or, you know, you have javascript turned off.)</span>
|
||||
<span class="center rainbow">Note: if you can't see anything after the page loads, it might be that you have some "auto-dark" extension on, or you're using some builtin browser feature that darkens webpages, and decided to invert the images. If that is the case, sorry! Can't fix that and have the page not be blinding. ¯\_(ツ)_/¯</span>
|
||||
</body>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>H U N T</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/hunt-old"></script> -->
|
||||
|
@ -14,6 +14,6 @@
|
|||
<h3>TIMES UP.</h3>
|
||||
<!-- ) rebmevoN yeksihW racsO atleD ( tteiluJ ) apaP mrofinU ( eviF racsO ) rebmevoN yeksihW racsO atleD ( tortxoF ) apaP mrofinU ( rebmevoN ) rebmevoN yeksihW racsO atleD ( ohcE ) apaP mrofinU ( arreiS ) rebmevoN yeksihW racsO atleD ( ognaT tortxoF uluZ ) apaP mrofinU ( aidnI ) rebmevoN yeksihW racsO atleD ( eilrahC floG ognaT ) apaP mrofinU ( ruoF ohcE cebeuQ tortxoF ohcE ) rebmevoN yeksihW racsO atleD ( floG ) apaP mrofinU ( thgiE racsO ) rebmevoN yeksihW racsO atleD ( yar-X ) apaP mrofinU ( uluZ eeknaY tteiluJ ) rebmevoN yeksihW racsO atleD ( eeknaY mrofinU ovarB rotciV ruoF atleD ) apaP mrofinU ( tortxoF ) rebmevoN yeksihW racsO atleD ( floG ) apaP mrofinU ( eviF apaP arreiS rebmevoN uluZ xiS ) rebmevoN yeksihW racsO atleD ( tteiluJ ) apaP mrofinU ( rotciV tortxoF ) rebmevoN yeksihW racsO atleD ( aflA ) apaP mrofinU ( # oreZ eilrahC tortxoF atleD ovarB ovarB owT oreZ xiS eilrahC oreZ ovarB xiS ohcE oreZ owT ? / ekiM racsO eilrahC potS ohcE amiL ovarB oemoR mrofinU ovarB potS ohcE ognaT arreiS aflA apaP / / : arreiS apaP ognaT ognaT letoH /!-->
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>Firepup650</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/index"></script> -->
|
||||
|
@ -43,6 +43,6 @@
|
|||
<br/>
|
||||
<a href="/calculator" class="cyan">Go to the Calculator page</a>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Maintenance</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/work"></script> -->
|
||||
|
@ -12,6 +12,6 @@
|
|||
<body>
|
||||
<p hidden id='Page ID'>nul</p>
|
||||
<h3 id='Maintenance' class=center><span class="warning">Website under maintenance.</span></h3>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Modpack</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/modpack"></script> -->
|
||||
|
@ -19,6 +19,6 @@
|
|||
<a href="/raw/modpack-v1.0.3.zip" class=cyan>V1.0.3</a><br/>
|
||||
<a href="/raw/modpack-v1.0.4.zip" class=cyan>V1.0.4</a>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Password Generator</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/pgen"></script> -->
|
||||
|
@ -19,6 +19,6 @@
|
|||
<input class="center" type="checkbox" id="numerics" checked></input><label for="numerics"><span class="center force-color">Include numbers</span></label>
|
||||
<br/>
|
||||
<span class="center force-color" id="password"></span>
|
||||
<script src="/pgen2.js"></script>
|
||||
<script src="/scripts/pgen2.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - PFPs</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/pfps"></script> -->
|
||||
|
@ -32,6 +32,6 @@
|
|||
<label for="chat" class="force-color">PFP used on Chat sites</label><br/>
|
||||
<img alt='"Chat" PFP' id="chat" src="/images/pfps/chat.jpg" class="cyan center-fit">
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Quotes</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/quotes"></script> -->
|
||||
|
@ -17,7 +17,7 @@
|
|||
<span id="access" class="force-color">I'll basically never say no to more access to more things... or more access to the same things</span> <button class="cyan copy-button" onclick="copy('access')">Copy</button><br/>
|
||||
<span id="vvcccblhvgjdrhcdvbihnhjddjgvlcuvfbvcfinbllic" class="force-color">vvcccblhvgjdikttkluehddnjbdhrrkvjhkfeiigbrct</span> <button class="cyan copy-button" onclick="copy('vvcccblhvgjdrhcdvbihnhjddjgvlcuvfbvcfinbllic')">Copy</button><br/>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
<!-- Modified from https://www.geeksforgeeks.org/how-to-create-copy-to-clipboard-button/ /!-->
|
||||
<script>
|
||||
function copy(element) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Ratings</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-ratings"></script> -->
|
||||
|
@ -27,6 +27,6 @@
|
|||
<br/>
|
||||
<p class=force-color>Talk to @Firepup650 about getting a rating page!</p>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Ratings - 9pfs</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-ratings"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@9pfs" class="cyan">@9pfs</a></h5><h5 class="force-color"> has not yet been rated.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Ratings - BMB</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-ratings"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@bigminiboss" class="cyan">@bigminiboss</a></h5><h5 class="force-color"> has not yet been rated.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Ratings - CE</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-ratings"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@CoderElijah" class="cyan">@CoderElijah</a></h5><h5 class="force-color"> has not yet been rated.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Ratngs - JASOB14</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-ratings"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@JayAhSeaOhBee14" class="cyan">@JayAySeaOhBee14</a></h5><h5 class="force-color"> has not yet been rated.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Ratings - PB2005</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-ratings"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@PikachuB2005" class="cyan">@PikachuB2005</a></h5><h5 class="force-color"> has not yet been rated.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Ratings - YC</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styless/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-ratings"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@Youngchief" class="cyan">@Youngchief</a></h5><h5 class="force-color"> has not yet been rated.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Services</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/Services"></script> -->
|
||||
|
@ -21,6 +21,6 @@
|
|||
<br/>
|
||||
<a href="https://music.firepi.amcforum.wiki" class="cyan">Radio</a>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/sscripts/cript.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Unfinished page</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/construction"></script> -->
|
||||
|
@ -265,6 +265,6 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Usage</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/usage"></script> -->
|
||||
|
@ -19,6 +19,6 @@
|
|||
<p><span class="force-color">4. The DVD logo is used on the "dvd-sceensaver" page</span></p>
|
||||
<p><span class="force-color">5. The </span><a href="https://countapi.xyz/" class="cyan">countapi.xyz</a><span class="force-color"> API is used for tracking total page views.</span></p>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Users</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-pages"></script> -->
|
||||
|
@ -29,6 +29,6 @@
|
|||
<br/>
|
||||
<p class=force-color>Talk to @Firepup650 about getting a page!</p>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - 9pfs</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-pages"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@9pfs" class="cyan">@9pfs</a></h5><h5 class="force-color"> has not yet provided content to put on this page.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - bigminiboss</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-pages"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@bigminiboss" class="cyan">@bigminiboss</a></h5><h5 class="force-color"> has not yet provided content to put on this page.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - CoderElijah</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-pages"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@CoderElijah" class="cyan">@CoderElijah</a></h5><h5 class="force-color"> has not yet provided content to put on this page.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/script/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - JASOB14</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-pages"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@JayAhSeaOhBee14" class="cyan">@JayAySeaOhBee14</a></h5><h5 class="force-color"> has not yet provided content to put on this page.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - PikachuB2005</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-pages"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@PikachuB2005" class="cyan">@PikachuB2005</a></h5><h5 class="force-color"> has not yet provided content to put on this page.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - SnakeByte</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-pages"></script> -->
|
||||
|
@ -13,6 +13,6 @@
|
|||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@SnakeByte" class="cyan">@SnakeByte</a></h5><h5 class="force-color"> has not yet provided content to put on this page.</h5>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Youngchief</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/user-pages"></script> -->
|
||||
|
@ -14,6 +14,6 @@
|
|||
<span class=center>
|
||||
<h5 class="force-color">If you see this page, then the route is setup and working properly, but </h5><h5><a href="https://replit.com/@Youngchief" class="cyan">@Youngchief</a></h5><h5 class="force-color"> has not yet provided content to put on this page.</h5>
|
||||
<p><a href="/youngchief/spotify" class="cyan">Youngchief's Spotify Status</a></p>
|
||||
<script src="/script.js"></script>
|
||||
<script src="s/cripts//script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Website Visits</title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
<script>
|
||||
function cb(response) {document.getElementById('visits').innerText = response.value;}
|
||||
|
@ -68,6 +68,6 @@
|
|||
<h4 class="rainbow">This website has had <span id="403error">0</span> error 403s.</h4>
|
||||
<h4 class="rainbow">This website has had <span id="500error">0</span> error 500s.</h4>
|
||||
</span>
|
||||
<script src="/script.js"></script>
|
||||
<script src="/scripts/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -13,7 +13,7 @@ function keydownListener(event) {
|
|||
} else {
|
||||
dPressed = false;
|
||||
ePressed = false;
|
||||
vPressed = false;
|
||||
vPressed = false;
|
||||
}
|
||||
}
|
||||
document.addEventListener('keydown', keydownListener);
|
||||
|
@ -27,7 +27,7 @@ function keyupListener(e) {
|
|||
eruda.init();
|
||||
document.removeEventListener('keyup', keyupListener);
|
||||
document.removeEventListener('keydown', keydownListener);
|
||||
}
|
||||
}
|
||||
}
|
||||
document.addEventListener('keyup', keyupListener);
|
||||
console.debug("Listener Script ready.")
|
||||
console.debug("Listener Script ready.")
|
||||
|
|
|
@ -3,7 +3,7 @@ function dLS(url) {
|
|||
script.src = url;
|
||||
document.head.appendChild(script);
|
||||
}
|
||||
dLS("hidden.js")
|
||||
dLS("footer.js")
|
||||
dLS("poof.js")
|
||||
console.log("Hidden scripts loaded")
|
||||
dLS("/scripts/hidden.js")
|
||||
dLS("/scripts/footer.js")
|
||||
dLS("/scripts/poof.js")
|
||||
console.log("Hidden scripts loaded")
|
||||
|
|
|
@ -3,6 +3,6 @@ function dLS(url) {
|
|||
script.src = url;
|
||||
document.head.appendChild(script);
|
||||
}
|
||||
dLS("pgen.js")
|
||||
dLS("footer.js")
|
||||
console.log("PwdGen scripts loaded")
|
||||
dLS("/scripts/pgen.js")
|
||||
dLS("/scripts/footer.js")
|
||||
console.log("PwdGen scripts loaded")
|
||||
|
|
|
@ -4,7 +4,7 @@ function dLS(url) {
|
|||
document.head.appendChild(script);
|
||||
}
|
||||
dLS("https://cdn.jsdelivr.net/npm/eruda@2.11.3/eruda.min.js")
|
||||
dLS("/footer.js")
|
||||
dLS("/maintenance.js")
|
||||
dLS("/eruda_loader.js")
|
||||
console.info("Main Script done.")
|
||||
dLS("/scripts/footer.js")
|
||||
dLS("/scripts/maintenance.js")
|
||||
dLS("/scripts/eruda_loader.js")
|
||||
console.info("Main Script done.")
|
||||
|
|
Loading…
Reference in a new issue