TheBin/views/index.ejs
2022-06-06 12:39:23 +03:00

39 lines
1.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">
<title>The Bin</title>
<script>
function alert(text) {
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">
<h1 class="header">welcome to the new kind of bin.</h1>
<h3 class="subheader">Completely Open-Source, uncensored.</h3>
<a href="/new" class="button">Get Started</a>
</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.2</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" 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>