-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbathroom.html
More file actions
53 lines (43 loc) · 1.99 KB
/
bathroom.html
File metadata and controls
53 lines (43 loc) · 1.99 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to the Bathroom</title>
<link rel="stylesheet" href="css/bathroom.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rochester&display=swap" rel="stylesheet">
</head>
<body>
<div id="content" style="display: none;">
<p id="welcome">We're so glad to have you here!</p>
<img id="kasia-and-eric" src="images/kasia-and-eric.webp" alt=":)">
<!-- Content for 18+ users -->
<div id="adult-content" style="display: none;">
<p>Whether you're here to pee, poop, wash your hands, or just to have a quick wank, we hope it's pleasant!
</p>
</div>
<!-- Content for under 18 users -->
<div id="minor-content" style="display: none;">
<p>Whether you're here to pee, poop, or just to wash your hands, we hope it's pleasant!</p>
</div>
<p><br>- Kasia and Eric<br></p><br><br>
<a href="http://s01.flagcounter.com/more/KX0"><img src="https://s01.flagcounter.com/count2/KX0/bg_FFFFFF/txt_000000/border_CCCCCC/columns_1/maxflags_3/viewers_0/labels_0/pageviews_0/flags_0/percent_0/" alt="Flag Counter" border="0"></a>
</div>
<script>
window.onload = function () {
const isAdult = confirm("Are you 18 years or older?");
const contentDiv = document.getElementById('content');
const adultContent = document.getElementById('adult-content');
const minorContent = document.getElementById('minor-content');
if (isAdult) {
adultContent.style.display = 'block';
} else {
minorContent.style.display = 'block';
}
contentDiv.style.display = 'block';
};
</script>
</body>
</html>