i-eat.rocks/site/apps/piracy.html

29 lines
828 B
HTML
Raw Permalink Normal View History

2024-08-18 03:45:35 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome</title>
<link rel="stylesheet" href="standard.css">
<style>
* {
text-align: center;
}
</style>
</head>
<body>
<script>
function createWindow(url, name, w, h) {
window.parent.postMessage(`win ${url} ${name} ${w} ${h}`)
}
</script>
<h1>Woah there!</h1>
<p>If you're seeing this that means you're playing this on the wrong website!</p>
<p>Don't worry though, simply click that button and I'll take you to where you can play this game.</p>
<button onclick="window.top.location.href = 'https://i-eat.rocks'"><span class="rainbow">Take me there!</span></button>
</body>
</html>