Initial commit
This commit is contained in:
commit
208e773d65
62 changed files with 4545 additions and 0 deletions
25
public/dynamic/about-you.ejs
Normal file
25
public/dynamic/about-you.ejs
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<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="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/abtbrow"></script></!-->
|
||||
<h1 class="rainbow block">About Your Browser</h1>
|
||||
</head>
|
||||
<body class=center>
|
||||
<p class="rainbow block">User Agent: <%= userAgent %></p>
|
||||
<p class="rainbow block">Browser Name: <%= browserName %></p>
|
||||
<p class="rainbow block">Browser Version: <%= browserVersion %></p>
|
||||
<p class="rainbow block">Platform Name: <%= platformName %></p>
|
||||
<p class="rainbow block">Platform Version: <%= platformVersion %></p>
|
||||
<p class="rainbow block">Device Model: <%= deviceModel %></p>
|
||||
<p class="rainbow block">Device Type: <%= deviceType %></p>
|
||||
<p class="rainbow block">Device Vendor: <%= deviceVendor %></p>
|
||||
<p class="rainbow block">Cookies Enabled: <%= cookiesEnabled %></p>
|
||||
<script src="footer.js"></script>
|
||||
</body>
|
||||
</html>
|
20
public/dynamic/raw.ejs
Normal file
20
public/dynamic/raw.ejs
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>FP650 - Raw - <%= fileName %></title>
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="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/raw"></script></!-->
|
||||
</head>
|
||||
<body class=center>
|
||||
<% if (!raw) { %>
|
||||
<p class=force-color><%- fileData %></p>
|
||||
<script src="/script.js"></script>
|
||||
<% } else { %>
|
||||
<p class="force-color left"><%- fileData %></p>
|
||||
<% } %>
|
||||
</body>
|
||||
</html>
|
18
public/dynamic/server-info.ejs
Normal file
18
public/dynamic/server-info.ejs
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>FP650 - Server Info</title>
|
||||
<link href="https://firepup650.repl.co/ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="https://firepup650.repl.co/favicon.ico">
|
||||
<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/abtserv"></script></!-->
|
||||
</head>
|
||||
<body class=center>
|
||||
<h3 class=rainbow>Server Info:</h3>
|
||||
<p class=rainbow>Author: <%= author %></p>
|
||||
<p class=rainbow>Uptime: <%= uptime %> seconds</p>
|
||||
<p class=rainbow>Total Pages: <%= images %></p>
|
||||
<script src="https://firepup650.repl.co/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
25
public/dynamic/spotify-history.ejs
Normal file
25
public/dynamic/spotify-history.ejs
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>FP650 - YCS - History</title>
|
||||
<link href="https://firepup650.repl.co/ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="https://firepup650.repl.co/favicon.ico">
|
||||
<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/YCSP"></script></!-->
|
||||
</head>
|
||||
<body class=center>
|
||||
<h3 class=rainbow>Youngchief's Spotify History:</h3>
|
||||
<% if (typeof err == 'undefined') { %>
|
||||
<p class=rainbow>Status: OK</p>
|
||||
<p class=rainbow>History (isrcs): <%= isrc %></p>
|
||||
<p class=rainbow>History (Song Names): <%= name %></p>
|
||||
<% } else { %>
|
||||
<p class=rainbow>Status: ERROR</p>
|
||||
<p class=rainbow>Error Origin: <%= end %></p>
|
||||
<p class=rainbow>Error: <%= err %></p>
|
||||
<% } %>
|
||||
<p class=rainbow>Raw data: <%= raw %></p>
|
||||
<script src="https://firepup650.repl.co/footer.js"></script>
|
||||
</body>
|
||||
</html>
|
27
public/dynamic/spotify-queue.ejs
Normal file
27
public/dynamic/spotify-queue.ejs
Normal file
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>FP650 - YCS - Queue</title>
|
||||
<link href="https://firepup650.repl.co/ejsstyle.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="https://firepup650.repl.co/favicon.ico">
|
||||
<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/YCSP"></script></!-->
|
||||
</head>
|
||||
<body class=center>
|
||||
<h3 class=rainbow>Youngchief's Spotify Queue:</h3>
|
||||
<% if (typeof err == 'undefined') { %>
|
||||
<p class=rainbow>Status: OK</p>
|
||||
<p class=rainbow>Queue (isrcs): <%= isrc %></p>
|
||||
<p class=rainbow>Queue (Song Names): <%= name %></p>
|
||||
<% } else { %>
|
||||
<p class=rainbow>Status: ERROR</p>
|
||||
<p class=rainbow>Error Origin: <%= end %></p>
|
||||
<p class=rainbow>Error: <%= err %></p>
|
||||
<% } %>
|
||||
<p class=rainbow>Raw data: <%= raw %></p>
|
||||
<script src="https://firepup650.repl.co/footer.js"></script>
|
||||
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
|
||||
<!-- ^ Replit's badge thing !-->
|
||||
</body>
|
||||
</html>
|
32
public/dynamic/spotify.ejs
Normal file
32
public/dynamic/spotify.ejs
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>FP650 - Youngchief's Spotify</title>
|
||||
<link href="https://firepup650.repl.co/style.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="https://firepup650.repl.co/favicon.ico">
|
||||
<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/YCSP"></script></!-->
|
||||
</head>
|
||||
<body class=center>
|
||||
<h3 class=rainbow>Youngchief's Spotify:</h3>
|
||||
<% if (typeof err == 'undefined') { %>
|
||||
<p class=rainbow>Status: OK</p>
|
||||
<p class=rainbow>Currently listening: <%= playing %></p>
|
||||
<p class=rainbow>Progress in track (in miliseconds): <%= progress %>/<%= len %></p>
|
||||
<p class=rainbow>Unique song ID (isrc): <%= isrc %></p>
|
||||
<p class=rainbow>Song Name: <%= name %></p>
|
||||
<p class=rainbow>Artist(s): <%= cont %></p>
|
||||
<% } else { %>
|
||||
<p class=rainbow>Status: ERROR</p>
|
||||
<p class=rainbow>Error Origin: <%= end %></p>
|
||||
<p class=rainbow>Error: <%= err %></p>
|
||||
<% } %>
|
||||
<p class=rainbow>Raw data: <%= raw %></p>
|
||||
<p class=rainbow>Cover Art:</p>
|
||||
<img src="<%= cal %>" class="no-bounce">
|
||||
<script src="https://firepup650.repl.co/footer.js"></script>
|
||||
<script src="https://replit.com/public/js/replit-badge.js" theme="teal" defer></script>
|
||||
<!-- ^ Replit's badge thing !-->
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue