Compare commits
No commits in common. "3cccf7692b8e7c9277cc535fe37ff9b2634ecd91" and "546050c3d0836539c72559434989a2745df2e290" have entirely different histories.
3cccf7692b
...
546050c3d0
38 changed files with 157 additions and 174 deletions
24
index.js
24
index.js
|
@ -1,6 +1,12 @@
|
|||
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;
|
||||
<<<<<<< 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;
|
||||
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 = {
|
||||
|
@ -162,6 +168,8 @@ function secondsToMinutes(seconds) {
|
|||
return minutes + ":" + leftoverSeconds + "0";
|
||||
}
|
||||
};
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
function execute(command, callback){
|
||||
exec(command, function(error, stdout, stderr){ callback(stdout); });
|
||||
};
|
||||
|
@ -175,6 +183,7 @@ 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));
|
||||
|
@ -263,6 +272,14 @@ 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";
|
||||
|
@ -272,6 +289,7 @@ app.get("/server-info", (req, res) => {
|
|||
system: sysup,
|
||||
images: totalPages
|
||||
})
|
||||
>>>>>>> 24c184c (Init)
|
||||
});
|
||||
});
|
||||
// Youngchief
|
||||
|
@ -526,4 +544,8 @@ 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="style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="ejsstyle.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="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/ejsstyle.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,9 +11,17 @@
|
|||
<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="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/ejsstyle.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="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/ejsstyle.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="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/ejsstyle.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="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/ejsstyle.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="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/ejsstyle.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/502error"></script> -->
|
||||
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/500error"></script> -->
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="center warning">502 Server Offline</h1>
|
||||
|
|
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="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="cheese.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;" class="no-special">
|
||||
<img alt="Bouncing cheese" id="cheese" src="/images/cheese.png" style="position: fixed; z-index: -1;">
|
||||
<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="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="cheese.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>
|
|
@ -1,24 +0,0 @@
|
|||
<!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,10 +31,8 @@
|
|||
<br/>/!-->
|
||||
<a href="/usage" class="cyan">Go to the Usage page</a>
|
||||
<br/>
|
||||
<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>
|
||||
<a href="/novnc" class="cyan">Go to the noVNC viewer</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>
|
|
@ -1,23 +0,0 @@
|
|||
<!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>
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
<!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">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>
|
||||
<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>
|
||||
</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,10 +25,8 @@
|
|||
<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>
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
<!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>
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
1.0.4
|
77
public/styles/cheese.css
Normal file
77
public/styles/cheese.css
Normal file
|
@ -0,0 +1,77 @@
|
|||
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,8 +1,3 @@
|
|||
@font-face {
|
||||
font-family: 'Source Code Pro';
|
||||
src: url('/fonts/SourceCodePro.ttf');
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
@ -44,10 +39,6 @@ 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;
|
||||
|
@ -103,4 +94,4 @@ transform: none !important;
|
|||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
text-fill-color: transparent;
|
||||
}
|
||||
}
|
|
@ -1,27 +1,15 @@
|
|||
/* @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;
|
||||
}
|
||||
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
|
||||
|
||||
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;
|
||||
}
|
||||
|
@ -99,11 +87,4 @@ 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