Initial commit

This commit is contained in:
Firepup Sixfifty 2023-10-01 18:39:12 -05:00
commit 208e773d65
62 changed files with 4545 additions and 0 deletions

58
public/pages/cheese.html Normal file
View file

@ -0,0 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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></!-->
<div id="preloads">
<link rel="preload" href="/images/cheese.png" as="image">
</div>
</head>
<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;">
<script>
var vX = 2;
var ovX = 2;
var ovY = 2;
var vY = 2;
var rot = 0;
function move() {
var width = window.innerWidth;
var height = window.innerHeight;
var elem = document.getElementById("cheese");
if(!elem.style.left) elem.style.left = width / 2 + "px";
if(!elem.style.top) elem.style.top = height / 2 + "px";
var oldX = parseInt(elem.style.left.slice(0, -2));
var oldY = parseInt(elem.style.top.slice(0, -2));
if(oldX < 0) vX = Math.abs(vX);
if(oldY < 0) vY = Math.abs(vY);
if(oldX + 150 > width) vX = -Math.abs(vX);
if(oldY + 150 > height) vY = -Math.abs(vY);
if(!(ovX == vX || ovY == ovY)) {ovX=vX; ovY=vY; }
elem.style.left = (oldX + vX) + "px";
elem.style.top = (oldY + vY) + "px";
rot += 1;
elem.style.transform = "rotate(" + rot + "deg)";
setTimeout(move, 1000 / 60);
}
move();
</script>
<script src="footer.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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>
<h3 id='Construction' class=center><span class="warning">Page under construction.</span></h3>
<script src="/script.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer class=cyan></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,93 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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></!-->
<div id="preloads">
<link rel="preload" href="/images/dvd-logo/norm.png" as="image">
<link rel="preload" href="/images/dvd-logo/light.png" as="image">
<link rel="preload" href="/images/dvd-logo/B.png" as="image">
<link rel="preload" href="/images/dvd-logo/C.png" as="image">
<link rel="preload" href="/images/dvd-logo/G.png" as="image">
<link rel="preload" href="/images/dvd-logo/P.png" as="image">
<link rel="preload" href="/images/dvd-logo/R.png" as="image">
<link rel="preload" href="/images/dvd-logo/Y.png" as="image">
</div>
</head>
<body>
<h5 hidden id='Maintenance' class="center"></h5>
<input class="center" type="checkbox" name="checkbox1" id="check" onclick="return logoTheme();"></input>
<label for="check"><span class="center force-color">Toggle logo theme</span></label>
<input class="center" type="checkbox" name="checkbox1" id="check2" onclick="return logoRainbow();"></input>
<label for="check2"><span class="center force-color">Toggle rainbow theme</span></label>
<img alt="DVD logo" id="logo" src="/images/dvd-logo/norm.png" style="position: fixed; z-index: -1;">
<script>
function logoTheme() {
var checkbox = document.getElementById("check");
var checkbox2 = document.getElementById("check2");
if (checkbox2.checked) {
checkbox2.checked = false;
}
if(checkbox.checked) {
document.getElementById("logo").src = "/images/dvd-logo/light.png"
document.getElementById("logo").alt = "DVD logo light"
} else {
document.getElementById("logo").src = "/images/dvd-logo/norm.png"
document.getElementById("logo").alt = "DVD logo"
}
}
function logoRainbow() {
var checkbox2 = document.getElementById("check");
var checkbox = document.getElementById("check2");
if (checkbox2.checked) {
checkbox2.checked = false;
}
if(!checkbox.checked) {
document.getElementById("logo").src = "/images/dvd-logo/norm.png"
document.getElementById("logo").alt = "DVD logo"
}
}
var vX = 2;
var vY = 2;
var vC = 0;
var colors = ["B","C","G","P","R","Y"]
function move() {
var width = window.innerWidth;
var height = window.innerHeight;
var checkbox = document.getElementById("check2");
var elem = document.getElementById("logo");
if(!elem.style.left) elem.style.left = width / 2 + "px";
if(!elem.style.top) elem.style.top = height / 2 + "px";
var oldX = parseInt(elem.style.left.slice(0, -2));
var oldY = parseInt(elem.style.top.slice(0, -2));
var oldvX = vX;
var oldvY = vY;
var oldvC = vC;
if(oldX < 0) vX = Math.abs(vX);
if(oldY < 0) vY = Math.abs(vY);
if(oldX + 150 > width) vX = -Math.abs(vX);
if(oldY + 150 > height) vY = -Math.abs(vY);
if((oldvY != vY || oldvX != vX)) {
vC+=1;
if (vC > 5) vC = 0;
}
if (oldvC != vC && checkbox.checked) {
document.getElementById("logo").src = "/images/dvd-logo/"+colors[vC]+".png";
document.getElementById("logo").alt = "DVD logo "+colors[vC];
}
elem.style.left = (oldX + vX) + "px";
elem.style.top = (oldY + vY) + "px";
setTimeout(move, 1000 / 60);
}
move();
</script>
<script src="footer.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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></!-->
</head>
<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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

57
public/pages/hidden.html Normal file
View file

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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></!-->
<div id="preloads">
<link rel="preload" href="/images/sheikah/char(33).png" as="image">
<link rel="preload" href="/images/sheikah/char(45).png" as="image">
<link rel="preload" href="/images/sheikah/char(46).png" as="image">
<link rel="preload" href="/images/sheikah/char(47).png" as="image">
<link rel="preload" href="/images/sheikah/char(48).png" as="image">
<link rel="preload" href="/images/sheikah/char(49).png" as="image">
<link rel="preload" href="/images/sheikah/char(50).png" as="image">
<link rel="preload" href="/images/sheikah/char(51).png" as="image">
<link rel="preload" href="/images/sheikah/char(52).png" as="image">
<link rel="preload" href="/images/sheikah/char(53).png" as="image">
<link rel="preload" href="/images/sheikah/char(54).png" as="image">
<link rel="preload" href="/images/sheikah/char(55).png" as="image">
<link rel="preload" href="/images/sheikah/char(56).png" as="image">
<link rel="preload" href="/images/sheikah/char(57).png" as="image">
<link rel="preload" href="/images/sheikah/char(58).png" as="image">
<link rel="preload" href="/images/sheikah/char(59).png" as="image">
<link rel="preload" href="/images/sheikah/char(60).png" as="image">
<link rel="preload" href="/images/sheikah/char(61).png" as="image">
<link rel="preload" href="/images/sheikah/char(62).png" as="image">
<link rel="preload" href="/images/sheikah/char(63).png" as="image">
<link rel="preload" href="/images/sheikah/char(64).png" as="image">
<link rel="preload" href="/images/sheikah/char(65).png" as="image">
<link rel="preload" href="/images/sheikah/char(66).png" as="image">
<link rel="preload" href="/images/sheikah/char(67).png" as="image">
<link rel="preload" href="/images/sheikah/char(68).png" as="image">
<link rel="preload" href="/images/sheikah/char(69).png" as="image">
<link rel="preload" href="/images/sheikah/char(70).png" as="image">
<link rel="preload" href="/images/sheikah/char(71).png" as="image">
<link rel="preload" href="/images/sheikah/char(72).png" as="image">
<link rel="preload" href="/images/sheikah/char(73).png" as="image">
<link rel="preload" href="/images/sheikah/char(74).png" as="image">
<link rel="preload" href="/images/sheikah/char(75).png" as="image">
<link rel="preload" href="/images/sheikah/char(76).png" as="image">
<link rel="preload" href="/images/sheikah/char(77).png" as="image">
<link rel="preload" href="/images/sheikah/char(78).png" as="image">
<link rel="preload" href="/images/sheikah/char(79).png" as="image">
<link rel="preload" href="/images/sheikah/char(80).png" as="image">
</div>
</head>
<body>
<h5 hidden id='Maintenance' class=center></h5>
<script src="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 "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>
</html>

36
public/pages/index.html Normal file
View file

@ -0,0 +1,36 @@
<!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="https://bouncecss.bookie0.repl.co/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">Welcome to my site!</h5>
<a href="/maintenance" class="cyan">Go to the Maintenance page</a>
<br/>
<a href="/dvd-screensaver" class="cyan">Go to the DVD Screensaver page</a>
<br/>
<a href="/cheese" class="cyan">Go to the Cheese page</a>
<br/>
<a href="/password-generator" class="cyan">Go to the Password Generator page</a>
<br/>
<a href="/users" class="cyan">Go to the Users page</a>
<br/>
<a href="/about-you" class="cyan">Go to the About Browser page</a>
<br/>
<a href="/server-info" class="cyan">Go to the Server Info page</a>
<br/>
<a href="/visits" class="cyan">Go to the Vists page</a>
<br/>
<a href="/usage" class="cyan">Go to the Usage page</a>
</span>
<script src="script.js"></script>
</body>
</html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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></!-->
</head>
<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>
</body>
</html>

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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></!-->
</head>
<body>
<h5 hidden id='Maintenance' class=center></h5>
<p class="center rainbow">Click the button to generate a random password:</p><button type="button" onclick="genPwd()" class="cyan center">Generate Password</button>
<input class="center" type="checkbox" id="commnsym"></input><label for="commnsym"><span class="center force-color">Include common symbols</span></label>
<input class="center" type="checkbox" id="uncomsym"></input><label for="uncomsym"><span class="center force-color">Include uncommon symbols</span></label>
<input class="center" type="checkbox" id="uppercas" checked></input><label for="uppercas"><span class="center force-color">Include uppercase letters</span></label>
<input class="center" type="checkbox" id="lowercas" checked></input><label for="lowercas"><span class="center force-color">Include lowercase letters</span></label>
<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>
</body>
</html>

37
public/pages/pfps.html Normal file
View file

@ -0,0 +1,37 @@
<!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="https://bouncecss.bookie0.repl.co/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></!-->
<div id="preloads">
<link rel="preload" href="/images/pfp/offical.jpg" as="image">
<link rel="preload" href="/images/pfp/unoffical.jpg" as="image">
<link rel="preload" href="/images/pfp/chat.jpg" as="image">
</div>
<style>
.center-fit {
max-width: 95%;
max-height: 95vh;
margin: auto;
}
</style>
</head>
<body>
<h5 hidden id='Maintenance' class="center"></h5>
<span class=center>
<h5 class="force-color">My profile pictures</h5>
<label for="offical" class="force-color">PFP used on "Offical" Replit sites</label><br/>
<img alt='"Offical" PFP' id="offical" src="/images/pfp/offical.jpg" class="center-fit"><br/>
<label for="unoffical" class="force-color">PFP used on Forum sites</label><br/>
<img alt='"Forum" PFP' id="forum" src="/images/pfp/forum.jpg" class="center-fit"><br/>
<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>
</body>
</html>

32
public/pages/ratings.html Normal file
View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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></!-->
</head>
<body>
<h5 hidden id='Maintenance' class="center"></h5>
<span class=center>
<h5 class="force-color">Current user ratings</h5>
<a href="/ratings/youngchief" class="cyan">Youngchief</a>
<br/>
<a href="/ratings/coderelijah" class="cyan">CoderElijah</a>
<br/>
<a href="/ratings/bigminiboss" class="cyan">bigminiboss</a>
<br/>
<a href="/ratings/pikachub2005" class="cyan">PikachuB2005</a>
<br/>
<a href="/ratings/jayayseaohbee14" class="cyan">JayAySeaOhBee14</a>
<br/>
<a href="/ratings/9pfs" class="cyan">9pfs</a>
<br/>
<p class=force-color>Talk to @Firepup650 about getting a rating page!</p>
</span>
<script src="script.js"></script>
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - Ratings - 9pfs</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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>
</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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - Ratings - BMB</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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>
</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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - Ratings - CE</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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>
</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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - Ratngs - JASOB14</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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>
</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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - Ratings - PB2005</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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>
</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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - Ratings - YC</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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>
</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/@Youngchief" class="cyan">@Youngchief</a></h5><h5 class="force-color"> has not yet provided content to put on this page.</h5>
<script src="/script.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

24
public/pages/usage.html Normal file
View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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></!-->
</head>
<body>
<h5 hidden id='Maintenance' class="center"></h5>
<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>
</span>
<script src="script.js"></script>
</body>
</html>

32
public/pages/users.html Normal file
View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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">Current user pages</h5>
<a href="/user/youngchief" class="cyan">Youngchief</a>
<br/>
<a href="/user/coderelijah" class="cyan">CoderElijah</a>
<br/>
<a href="/user/bigminiboss" class="cyan">bigminiboss</a>
<br/>
<a href="/user/pikachub2005" class="cyan">PikachuB2005</a>
<br/>
<a href="/user/jayayseaohbee14" class="cyan">JayAySeaOhBee14</a>
<br/>
<a href="/user/9pfs" class="cyan">9pfs</a>
<br/>
<p class=force-color>Talk to @Firepup650 about getting a page!</p>
</span>
<script src="script.js"></script>
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - bigminiboss</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - CoderElijah</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - JASOB14</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - PikachuB2005</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Firepup650 - Youngchief</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<link href="https://bouncecss.bookie0.repl.co/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/@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="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
<!-- ^ Replit's badge thing !-->
</body>
</html>

73
public/pages/visits.html Normal file
View file

@ -0,0 +1,73 @@
<!DOCTYPE html>
<html>
<head>
<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="https://bouncecss.bookie0.repl.co/bounce.css" rel="stylesheet" type="text/css" />
<script>
function cb(response) {document.getElementById('visits').innerText = response.value;}
function cb2(response) {document.getElementById('page').innerText = response.value;}
function cb3(response) {document.getElementById('hide').innerText = response.value;}
function cb4(response) {document.getElementById('work').innerText = response.value;}
function cb5(response) {document.getElementById('index').innerText = response.value;}
function cb6(response) {document.getElementById('abtbrow').innerText = response.value;}
function cb7(response) {document.getElementById('404error').innerText = response.value;}
function cb8(response) {document.getElementById('500error').innerText = response.value;}
function cb9(response) {document.getElementById('403error').innerText = response.value;}
function cb0(response) {document.getElementById('cheese').innerText = response.value;}
function cbA(response) {document.getElementById('dvd').innerText = response.value;}
function cbB(response) {document.getElementById('usage').innerText = response.value;}
function cbC(response) {document.getElementById('pgen').innerText = response.value;}
function cbD(response) {document.getElementById('upag').innerText = response.value;}
function cbE(response) {document.getElementById('urat').innerText = response.value;}
function cbF(response) {document.getElementById('YCpag').innerText = response.value;}
function cbG(response) {document.getElementById('abtserv').innerText = response.value;}
function cbH(response) {document.getElementById('construction').innerText = response.value;}
</script>
<div id="get-counters">
<!--><script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits?callback=cb"></script>
<script async src="https://api.countapi.xyz/hit/firepup650.repl.co/test?callback=cb2"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/hide?callback=cb3"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/work?callback=cb4"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/index?callback=cb5"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/abtbrow?callback=cb6"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/404error?callback=cb7"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/500error?callback=cb8"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/403error?callback=cb9"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/cheese?callback=cb0"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/dvdscreensaver?callback=cbA"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/usage?callback=cbB"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/pgen?callback=cbC"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/user-pages?callback=cbD"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/user-ratings?callback=cbE"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/YCSP?callback=cbF"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/abtserv?callback=cbG"></script>
<script async src="https://api.countapi.xyz/get/firepup650.repl.co/construction?callback=cbH"></script></!-->
</div>
</head>
<body>
<h5 hidden id='Maintenance' class=center></h5>
<span id="center all" class=center>
<h4 class="rainbow">This website has had a total of <span id="visits">0</span> views.</h4>
<h4 class="rainbow">This page has had a total of <span id="page">0</span> views.</h4>
<h4 class="rainbow">The page_name_error page has had a total of <span id="hide">0</span> views.</h4>
<h4 class="rainbow">The maintenance page has had a total of <span id="work">0</span> views.</h4>
<h4 class="rainbow">The index page has had a total of <span id="index">0</span> views.</h4>
<h4 class="rainbow">The cheese page has had a total of <span id="cheese">0</span> views.</h4>
<h4 class="rainbow">The dvd-screensaver page has had a total of <span id="dvd">0</span> views.</h4>
<h4 class="rainbow">The password-generator page has had a total of <span id="pgen">0</span> views.</h4>
<h4 class="rainbow">The about-you page has had a total of <span id="abtbrow">0</span> views.</h4>
<h4 class="rainbow">The server-info page has had a total of <span id="abtserv">0</span> views.</h4>
<h4 class="rainbow">The user pages have had a total of <span id="upag">0</span> views.</h4>
<h4 class="rainbow">The user ratings pages have had a total of <span id="urat">0</span> views.</h4>
<h4 class="rainbow">Youngchief's Spotify pages have had a total of <span id="YCpag">0</span> views.</h4>
<h4 class="rainbow">Under Costruction Pages have had a total of <span id="construction">0</span> views.</h4>
<h4 class="rainbow">This website has had <span id="404error">0</span> error 404s.</h4>
<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>
</body>
</html>