TheBin/views/index.ejs
2022-09-14 22:25:30 +03:00

53 lines
2.8 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<meta property="og:title" content="THE Bin" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://bin.got-hacked.rip/" />
<meta property="og:description" content="An open-source, uncensored bin." />
<meta name="theme-color" content="#5D67FF">
<title>THE Bin // Home</title>
<script>
function alert(text) {
if(document.getElementsByClassName('alert').length > 0) {
Object.keys(document.getElementsByClassName('alert')).forEach(item => {
if(item != 'length') {
document.body.removeChild(document.getElementsByClassName('alert')[item]);
}
})
}
var alert = document.createElement("div");
alert.className = "alert";
alert.innerHTML = text;
document.body.appendChild(alert);
setTimeout(function() {
document.body.removeChild(alert);
}, 3000);
}
</script>
</head>
<body style="overflow-y: hidden">
<div class="credits">
<p>Developed by TheRed with <3</p>
</div>
<div class="container-external">
<div class="container-middle">
<div class="container">
<div class="container-inner">
<h1 class="header">Welcome to <span style="color:#678aff"><span style="font-family:'silkscreenb'">the</span> bin</span></h1>
<h3 class="subheader">Completely Open-Source.<br/>No censorship. Encrypted.<br/><span style="color:#475caa;font-size:10pt">V0.3 out now! (lots of things changed)</span></h3>
<a href="/new" class="button">Go ahead and get to binnin'</a>
</div>
</div>
</div>
<p style="font-family:'hack';font-size:13pt;position:absolute;bottom:5px;right:5px;font-style:italic;"><a href="/paste/1aa5ca4b19daea70e3268ac88ef3c8f3" style="text-decoration: none;color:#3f4d7c;">Version 0.3</a></p>
<p style="font-family:'hack';font-size:13pt;position:absolute;top:5px;right:5px;font-style:italic;"><a href="https://code.cat.casa/TheRed-Software/TheBin" target="_blank" style="text-decoration: underline;color:#3f4d7c;">Git Repository</a></p>
<p style="font-family:'hack';font-size:13pt;position:absolute;bottom:5px;left:5px;font-style:italic;"><a href="/paste/changelogs" style="text-decoration: underline;color:#3f4d7c;">Changelogs</a></p>
</div>
<script defer>alert("Welcome aboard. Honored to meet you.");</script>
</body>
</html>