-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathend.html
More file actions
35 lines (35 loc) · 1.71 KB
/
end.html
File metadata and controls
35 lines (35 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!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="static/style.css" type="text/css" />
<link rel="stylesheet" href="static/style_end.css" type="text/css" />
<link id="favicon" rel="shortcut icon" type="image/png" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABIUlEQVRYhe2XsRWDIBCGf/IyiKVuYG9l5wgu4DQu4Ah2VvRuIKWbmOp8F+UQhcTGv0p8yPfl8AICT25I2dYLfX7fAZ60Wa/tBMq2XoamU7GhWzBlB+I3hIjYfi1l7sd1XiugbOtl0gZZkXqLEHBoOkX328LhwMEzQJPwyX3GS9nCAeBlG7gFTdpg0gZlWy98ic7EBhcFpHARaUxS5bvyS3DAsQRzP6qkyq2gK6WWcqoCPFIVzsABoQt4pCoQjLfbWTjgUYG5H9XRxEdL4or3XzGXoKq4qhNdQJLJijRI4vJDGCuPQLTd7koLAoEVCGm/KAIx8gg8At6ts91+Y50JnIOOjtS+ccmIp+JQqK+I9b0gNtgl8fXl13CbxO6Q8a+QxAdkSqxYTllAtwAAAABJRU5ErkJggg==">
<title>Oooh Nooo!</title>
</head>
<body>
<div class="crazy-bg"></div>
<div class="crazy-bg2"></div>
<div class="center-content">
<div class="central-box">
<h2>Oooh Nooo!</h2>
<p>
You have opened the ancient teapot and let INSANITY crawl out of its prison.<br>
It will spread and convert all human beings to insane cultists!
</p>
<img id="insane-tp" src="static/img/teapets/TP_Insanity.png" alt="insanity" /><br>
Thanks for playing?!<br><br>
<button class="btn-cheat" onclick="reset_save()">Restart</button>
</div>
</div>
<script>
function reset_save() {
if (!confirm("Do you want to do the same thing all over again?")) return;
localStorage.clear();
location.href = "/tea";
}
</script>
</body>
</html>