Compare commits
10 commits
546050c3d0
...
3cccf7692b
Author | SHA1 | Date | |
---|---|---|---|
3cccf7692b | |||
25f25ef125 | |||
02a1ebc9aa | |||
9c7aec1fcd | |||
b6c9c92d9f | |||
52ff2f02d8 | |||
ad8287ba4c | |||
67c1060f59 | |||
9ba2e25041 | |||
83722f95a5 |
38 changed files with 174 additions and 157 deletions
24
index.js
24
index.js
|
@ -1,12 +1,6 @@
|
|||
<<<<<<< HEAD
|
||||
const express = require("express"), http = require('http'), UAParser = require('ua-parser-js'), fs = require('fs'), path = require("path"), app = express(), directory = __dirname, htmlfileloc = directory + "/public/pages", rawfileloc = directory + "/public/raw", cssfileloc = directory + "/public/scripts", jsfileloc = directory + "/public/styles", iconfileloc = directory + "/public/icons", errorfileloc = directory + "/public/errors", dynamfileloc = directory + "/public/dynamic", err404loc = errorfileloc + "/404.ejs", err422loc = errorfileloc + "/422.ejs", err403loc = errorfileloc + "/403.ejs", err500loc = errorfileloc + "/500.ejs", conloc = htmlfileloc + "/construction.html", port = 8080, validImageTypes = ['.jpg', '.jpeg', '.png', '.gif'], imgsrv = "https://image-hosting.firepup650.repl.co", axios = require('axios'), und = undefined, users = ["youngchief","coderelijah","bigminiboss","pikachub2005","jayayseaohbee14","9pfs"], aliases = {"smallmaxworker":"bigminiboss","9pfs1":"9pfs"};
|
||||
var tracks = und, datas = und;
|
||||
app.use(require("expressjs-remembering-doomsdaybear"))
|
||||
=======
|
||||
const express = require("express"), http = require('http'), UAParser = require('ua-parser-js'), fs = require('fs'), path = require("path"), app = express(), directory = __dirname, htmlfileloc = directory + "/public/pages", rawfileloc = directory + "/public/raw", cssfileloc = directory + "/public/scripts", jsfileloc = directory + "/public/styles", iconfileloc = directory + "/public/icons", errorfileloc = directory + "/public/errors", dynamfileloc = directory + "/public/dynamic", err404loc = errorfileloc + "/404.ejs", err422loc = errorfileloc + "/422.ejs", err403loc = errorfileloc + "/403.ejs", err500loc = errorfileloc + "/500.ejs", conloc = htmlfileloc + "/construction.html", port = 8080, validImageTypes = ['.jpg', '.jpeg', '.png', '.gif'], imgsrv = "https://image-hosting.firepup650.repl.co", axios = require('axios'), und = undefined, users = ["youngchief","coderelijah","bigminiboss","pikachub2005","jayayseaohbee14","9pfs","omegaorbitals"], aliases = {"smallmaxworker":"bigminiboss","9pfs1":"9pfs"}, exec = require('child_process').exec;
|
||||
const express = require("express"), http = require('http'), UAParser = require('ua-parser-js'), fs = require('fs'), path = require("path"), app = express(), directory = __dirname, htmlfileloc = directory + "/public/pages", rawfileloc = directory + "/public/raw", cssfileloc = directory + "/public/scripts", jsfileloc = directory + "/public/styles", iconfileloc = directory + "/public/icons", errorfileloc = directory + "/public/errors", dynamfileloc = directory + "/public/dynamic", err404loc = errorfileloc + "/404.ejs", err422loc = errorfileloc + "/422.ejs", err403loc = errorfileloc + "/403.ejs", err500loc = errorfileloc + "/500.ejs", conloc = htmlfileloc + "/construction.html", port = 8080, validImageTypes = ['.jpg', '.jpeg', '.png', '.gif'], imgsrv = "https://image-hosting.firepup650.repl.co", axios = require('axios'), und = undefined, users = ["youngchief","coderelijah","bigminiboss","pikachub2005","jayayseaohbee14","9pfs","omegaorbitals","snakebyte"], aliases = {"smallmaxworker":"bigminiboss","9pfs1":"9pfs"}, exec = require('child_process').exec;
|
||||
var tracks = und, datas = und;
|
||||
//app.use(require("expressjs-remembering-doomsdaybear"))
|
||||
>>>>>>> 24c184c (Init)
|
||||
app.set('trust proxy', 1)
|
||||
const cookieCheck = (req, res, next) => {
|
||||
const options = {
|
||||
|
@ -168,8 +162,6 @@ function secondsToMinutes(seconds) {
|
|||
return minutes + ":" + leftoverSeconds + "0";
|
||||
}
|
||||
};
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
function execute(command, callback){
|
||||
exec(command, function(error, stdout, stderr){ callback(stdout); });
|
||||
};
|
||||
|
@ -183,7 +175,6 @@ function format(seconds){
|
|||
|
||||
return pad(hours) + ':' + pad(minutes) + ':' + pad(seconds);
|
||||
}
|
||||
>>>>>>> 24c184c (Init)
|
||||
app.use(cookieCheck);
|
||||
app.use(express.static(cssfileloc));
|
||||
app.use(express.static(jsfileloc));
|
||||
|
@ -272,14 +263,6 @@ app.get('/about-you', function(req, res) {
|
|||
});
|
||||
});
|
||||
app.get("/server-info", (req, res) => {
|
||||
<<<<<<< HEAD
|
||||
let uptime = (Date.now() - startTime) / 1000;
|
||||
let author = "Firepup650";
|
||||
res.render(dynamfileloc + '/server-info.ejs', {
|
||||
author: author,
|
||||
uptime: uptime,
|
||||
images: totalPages
|
||||
=======
|
||||
execute("uptime -p", (sysup) => {
|
||||
let uptime = process.uptime();
|
||||
let author = "Firepup650";
|
||||
|
@ -289,7 +272,6 @@ app.get("/server-info", (req, res) => {
|
|||
system: sysup,
|
||||
images: totalPages
|
||||
})
|
||||
>>>>>>> 24c184c (Init)
|
||||
});
|
||||
});
|
||||
// Youngchief
|
||||
|
@ -544,8 +526,4 @@ app.on("error", error => {
|
|||
default:
|
||||
throw error;
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
});
|
||||
=======
|
||||
});
|
||||
>>>>>>> 24c184c (Init)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - About You</title>
|
||||
<link href="ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link href="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> -->
|
||||
|
@ -22,4 +22,4 @@
|
|||
<p class="rainbow block">Cookies Enabled: <%= cookiesEnabled %></p>
|
||||
<script src="footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>FP650 - Server Info</title>
|
||||
<link href="/ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/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> -->
|
||||
|
@ -11,17 +11,9 @@
|
|||
<body class=center>
|
||||
<h3 class=rainbow>Server Info:</h3>
|
||||
<p class=rainbow>Author: <%= author %></p>
|
||||
<<<<<<< HEAD
|
||||
<p class=rainbow>Uptime: <%= uptime %> seconds</p>
|
||||
<p class=rainbow>Total Pages: <%= images %></p>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
=======
|
||||
<p class=rainbow>System Uptime: <%= system %></p>
|
||||
<p class=rainbow>Node Uptime: <%= uptime %></p>
|
||||
<p class=rainbow>Total Pages: <%= images %></p>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
>>>>>>> 24c184c (Init)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>FP650 - YCS - History</title>
|
||||
<link href="/ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/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> -->
|
||||
|
@ -22,4 +22,4 @@
|
|||
<p class=rainbow>Raw data: <%= raw %></p>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>FP650 - YCS - Queue</title>
|
||||
<link href="/ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/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> -->
|
||||
|
@ -22,4 +22,4 @@
|
|||
<p class=rainbow>Raw data: <%= raw %></p>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - 403 Error</title>
|
||||
<link href="/ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/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/403error"></script> -->
|
||||
|
@ -19,4 +19,4 @@
|
|||
<% } %>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - 404 Error</title>
|
||||
<link href="/ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/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/404error"></script> -->
|
||||
|
@ -19,4 +19,4 @@
|
|||
<% } %>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - 422 Error</title>
|
||||
<link href="/ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/styles/bounce.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
@ -17,4 +17,4 @@
|
|||
<% } %>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<link href="/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/500error"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/502error"></script> -->
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="center warning">502 Server Offline</h1>
|
||||
|
|
BIN
public/fonts/SourceCodePro.ttf
Normal file
BIN
public/fonts/SourceCodePro.ttf
Normal file
Binary file not shown.
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Cheese</title>
|
||||
<link href="cheese.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/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> -->
|
||||
|
@ -15,7 +15,7 @@
|
|||
<body>
|
||||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<p class="center rainbow" id="bc"></p>
|
||||
<img alt="Bouncing cheese" id="cheese" src="/images/cheese.png" style="position: fixed; z-index: -1;">
|
||||
<img alt="Bouncing cheese" id="cheese" src="/images/cheese.png" style="position: fixed; z-index: -1;" class="no-special">
|
||||
<script>
|
||||
var vX = 2;
|
||||
var ovX = 2;
|
||||
|
@ -51,6 +51,6 @@
|
|||
|
||||
move();
|
||||
</script>
|
||||
<script src="footer.js"></script>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - DVD Screensaver</title>
|
||||
<link href="cheese.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/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="footer.js"></script>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
24
public/pages/error-debug.html
Normal file
24
public/pages/error-debug.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<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/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> -->
|
||||
</head>
|
||||
<body>
|
||||
<h5 hidden="" id="Maintenance" class="center"></h5>
|
||||
<span class="center">
|
||||
<h5 id='Construction' class="force-color">Error Debugging</h5>
|
||||
<a href="/cause-error-500" class="cyan">Error 500</a>
|
||||
<br/>
|
||||
<a href="/cause-error-404" class="cyan">Error 404</a>
|
||||
<br/>
|
||||
<a href="/cause-error-403" class="cyan">Error 403</a>
|
||||
</span>
|
||||
<script src="/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="/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="footer.js"></script>
|
||||
<script src="/footer.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="/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> -->
|
||||
|
|
|
@ -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="/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> -->
|
||||
|
@ -31,8 +31,10 @@
|
|||
<br/>/!-->
|
||||
<a href="/usage" class="cyan">Go to the Usage page</a>
|
||||
<br/>
|
||||
<a href="/novnc" class="cyan">Go to the noVNC viewer</a>
|
||||
<a href="/services" class="cyan">Go to the Services page</a>
|
||||
<br/>
|
||||
<a href="/error-debug" class="cyan">Go to the Error debugging page</a>
|
||||
</span>
|
||||
<script src="script.js"></script>
|
||||
<script src="/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="/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="/script.js"></script>
|
||||
</body>
|
||||
</html>
|
23
public/pages/modpack.html
Normal file
23
public/pages/modpack.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<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/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> -->
|
||||
</head>
|
||||
<body>
|
||||
<span class=center>
|
||||
<h3 id='Construction' class=force-color>Modpack downloads</h3>
|
||||
<a href="/raw/modpack-v1.0.0.zip" class=cyan>V1.0.0</a><br/>
|
||||
<a href="/raw/modpack-v1.0.1.zip" class=cyan>V1.0.1</a><br/>
|
||||
<a href="/raw/modpack-v1.0.2.zip" class=cyan>V1.0.2</a><br/>
|
||||
<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>
|
||||
</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="/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="/pgen2.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="/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> -->
|
||||
|
@ -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/pfp/chat.jpg" class="center-fit">
|
||||
</span>
|
||||
<script src="script.js"></script>
|
||||
<script src="/script.js"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -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="/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="/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
26
public/pages/services.html
Normal file
26
public/pages/services.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<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/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> -->
|
||||
</head>
|
||||
<body>
|
||||
<h5 hidden id='Maintenance' class="center"></h5>
|
||||
<span class=center>
|
||||
<h5 class="force-color">Avalible Services</h5>
|
||||
<a href="/thelounge/" class="cyan">TheLounge</a>
|
||||
<br/>
|
||||
<a href="/dynmap/" class="cyan">Dynmap</a>
|
||||
<br/>
|
||||
<a href="/novnc/" class="cyan">noVNC</a>
|
||||
<br/>
|
||||
<a href="https://music.firepi.amcforum.wiki" class="cyan">Radio</a>
|
||||
</span>
|
||||
<script src="/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="/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> -->
|
||||
|
@ -14,11 +14,11 @@
|
|||
<span class=center>
|
||||
<h5 class="force-color">Things I use on this site</h5>
|
||||
<p><span class="force-color">1. </span><a href="https://bookie0.repl.co" class="cyan">Bookie0's</a> <a href="https://bouncecss.bookie0.repl.co/" class="cyan">BounceCSS</a><span class="force-color"> is used for styling</span></p>
|
||||
<p><span class="force-color">3. Most of the site uses code I've made, or adapted from online sources</span></p>
|
||||
<p><span class="force-color">4. The "cheese" page uses code from </span><a href="https://commandblockguy.xyz/" class="cyan">commandblockguy's site</a><span class="force-color">, and "dvd-screensaver" uses adapted code of the same.</span></p>
|
||||
<p><span class="force-color">5. The DVD logo is used on the "dvd-sceensaver" page</span></p>
|
||||
<p><span class="force-color">6. 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>
|
||||
<p><span class="force-color">2. Most of the site uses code I've made, or adapted from online sources</span></p>
|
||||
<p><span class="force-color">3. The "cheese" page uses code from </span><a href="https://commandblockguy.xyz/" class="cyan">commandblockguy's site</a><span class="force-color">, and "dvd-screensaver" uses adapted code of the same.</span></p>
|
||||
<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="/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</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="/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> -->
|
||||
|
@ -25,8 +25,10 @@
|
|||
<br/>
|
||||
<a href="/user/9pfs" class="cyan">9pfs</a>
|
||||
<br/>
|
||||
<a href="/user/snakebyte" class="cyan">SnakeByte</a>
|
||||
<br/>
|
||||
<p class=force-color>Talk to @Firepup650 about getting a page!</p>
|
||||
</span>
|
||||
<script src="script.js"></script>
|
||||
<script src="/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
18
public/pages/users/snakebyte.html
Normal file
18
public/pages/users/snakebyte.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<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/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> -->
|
||||
</head>
|
||||
<body>
|
||||
<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>
|
||||
</body>
|
||||
</html>
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>Firepup650 - Website Visits</title>
|
||||
<link href="style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/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="footer.js"></script>
|
||||
<script src="/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
BIN
public/raw/Melón-trim.mp3
Normal file
BIN
public/raw/Melón-trim.mp3
Normal file
Binary file not shown.
BIN
public/raw/ReVanced Extended v18.29.38.apk
Normal file
BIN
public/raw/ReVanced Extended v18.29.38.apk
Normal file
Binary file not shown.
BIN
public/raw/iPhone-15-retro-gaming-pro.mp4
Normal file
BIN
public/raw/iPhone-15-retro-gaming-pro.mp4
Normal file
Binary file not shown.
BIN
public/raw/modpack-v1.0.0.zip
Normal file
BIN
public/raw/modpack-v1.0.0.zip
Normal file
Binary file not shown.
BIN
public/raw/modpack-v1.0.1.zip
Normal file
BIN
public/raw/modpack-v1.0.1.zip
Normal file
Binary file not shown.
BIN
public/raw/modpack-v1.0.2.zip
Normal file
BIN
public/raw/modpack-v1.0.2.zip
Normal file
Binary file not shown.
BIN
public/raw/modpack-v1.0.3.zip
Normal file
BIN
public/raw/modpack-v1.0.3.zip
Normal file
Binary file not shown.
BIN
public/raw/modpack-v1.0.4.zip
Normal file
BIN
public/raw/modpack-v1.0.4.zip
Normal file
Binary file not shown.
1
public/raw/modpack.txt
Normal file
1
public/raw/modpack.txt
Normal file
|
@ -0,0 +1 @@
|
|||
1.0.4
|
|
@ -1,77 +0,0 @@
|
|||
html, body {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
color: #00FF00;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.warning {
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.block {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a:has(button) {
|
||||
box-shadow: none !important;
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
#replit-badge {
|
||||
box-shadow: none;
|
||||
transform: none;
|
||||
outline: none;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.center {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
color: #00FF00;
|
||||
}
|
||||
|
||||
.left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.rainbow {
|
||||
background: linear-gradient(to right , #ff0000 0% , #e100ff 10% , #00b3ff 30% , #00ff1e 50% , #ff0000 90%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.color {
|
||||
color: #00FF00;
|
||||
}
|
||||
|
||||
.force-color {
|
||||
background: #00ff00;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
text-fill-color: transparent;
|
||||
}
|
|
@ -1,3 +1,8 @@
|
|||
@font-face {
|
||||
font-family: 'Source Code Pro';
|
||||
src: url('/fonts/SourceCodePro.ttf');
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
@ -39,6 +44,10 @@ footer {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
a, button, .rainbow, .force-color, span, label {
|
||||
font-family: 'Source Code Pro', monospace !important;
|
||||
}
|
||||
|
||||
a:has(button) {
|
||||
box-shadow: none !important;
|
||||
transform: none !important;
|
||||
|
@ -94,4 +103,4 @@ transform: none !important;
|
|||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
text-fill-color: transparent;
|
||||
}
|
||||
}
|
|
@ -1,15 +1,27 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
|
||||
/* @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap'); */
|
||||
|
||||
@font-face {
|
||||
font-family: 'Source Code Pro';
|
||||
src: url('/fonts/SourceCodePro.ttf');
|
||||
}
|
||||
|
||||
* {
|
||||
color-scheme: light dark;
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: #000000;
|
||||
color: #00FF00;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: 'Source Code Pro', monospace !important;
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.warning {
|
||||
color: #FF0000;
|
||||
}
|
||||
|
@ -87,4 +99,11 @@ a:has(button) {
|
|||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
text-fill-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.no-special {
|
||||
box-shadow: none !important;
|
||||
border-radius: unset !important;
|
||||
outline: none !important;
|
||||
transition: none !important;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue