File size: 14,662 Bytes
4955211 |
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Secure Content Viewer</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
danger: '#e53e3e',
warning: '#dd6b20',
safe: '#38a169'
}
}
}
}
</script>
<style>
.blurred {
filter: blur(10px);
position: relative;
overflow: hidden;
}
.blurred::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.3);
z-index: 1;
}
.image-container {
position: relative;
overflow: hidden;
border-radius: 0.75rem;
transition: all 0.3s ease;
}
.overlay-warning {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
display: flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
text-align: center;
padding: 1rem;
z-index: 10;
opacity: 1;
transition: opacity 0.3s ease;
}
.fade-out {
opacity: 0;
}
</style>
</head>
<body class="bg-gray-100 min-h-screen">
<!-- Age Verification Modal -->
<div id="ageModal" class="fixed inset-0 bg-gray-900 bg-opacity-90 z-50 flex items-center justify-center p-4">
<div class="bg-white rounded-2xl max-w-md w-full p-8 shadow-2xl">
<div class="text-center mb-6">
<i class="fas fa-exclamation-triangle text-5xl text-yellow-500 mb-4"></i>
<h2 class="text-3xl font-bold text-gray-800 mb-2">Content Warning</h2>
<p class="text-gray-600 mb-6">
This page contains content intended for mature audiences only.
You must be at least 18 years old to access this material.
</p>
<div class="flex space-x-4 justify-center mb-6">
<div class="bg-gray-100 border border-gray-300 rounded-xl p-4 text-center w-24">
<i class="fas fa-3x fa-ban text-red-500 mb-2"></i>
<span class="font-semibold">No Explicit Content</span>
</div>
<div class="bg-gray-100 border border-gray-300 rounded-xl p-4 text-center w-24">
<i class="fas fa-3x fa-child text-blue-500 mb-2"></i>
<span class="font-semibold">Age Restriction</span>
</div>
</div>
</div>
<p class="text-gray-700 text-center font-medium mb-4">Are you 18 years of age or older?</p>
<div class="flex justify-center gap-4">
<button id="confirmBtn" class="bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-6 rounded-xl transition-all shadow-lg hover:shadow-xl">
<i class="fas fa-check mr-2"></i>Yes, I'm 18+
</button>
<button id="declineBtn" class="bg-red-600 hover:bg-red-700 text-white font-bold py-3 px-6 rounded-xl transition-all shadow-lg hover:shadow-xl">
<i class="fas fa-times mr-2"></i>No, Leave
</button>
</div>
</div>
</div>
<!-- Main App Container -->
<div id="appContent" class="container mx-auto px-4 py-10 hidden">
<!-- Header -->
<header class="mb-12 text-center">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Secure Content Viewer</h1>
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 mx-auto mb-4"></div>
<p class="text-gray-600 max-w-2xl mx-auto">
View content with appropriate warnings and safety precautions. All images are blurred until you choose to reveal them.
</p>
</header>
<!-- Content Filtering -->
<div class="bg-white rounded-xl shadow-lg p-6 mb-12">
<div class="flex flex-col md:flex-row justify-between items-center gap-6">
<div>
<h2 class="text-xl font-bold text-gray-800 mb-1">Content Filter Settings</h2>
<p class="text-gray-600 text-sm">Adjust your viewing preferences</p>
</div>
<div class="flex flex-wrap gap-3">
<span class="px-4 py-2 rounded-full bg-red-100 text-red-700 font-medium flex items-center">
<i class="fas fa-exclamation-triangle mr-2"></i>NSFW Filter Active
</span>
<span class="px-4 py-2 rounded-full bg-green-100 text-green-700 font-medium flex items-center">
<i class="fas fa-child mr-2"></i>Age Verified
</span>
</div>
</div>
</div>
<!-- Image Gallery -->
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8">
<!-- Gallery Item 1 -->
<div class="image-container group">
<div class="rounded-xl overflow-hidden h-64">
<div class="bg-gray-200 border-2 border-dashed w-full h-full blurred">
<div class="overlay-warning" id="warning1">
<div>
<i class="fas fa-lock text-3xl mb-3"></i>
<p class="font-bold">Sensitive Content</p>
<p class="text-sm mt-1">Click to view</p>
</div>
</div>
</div>
</div>
<div class="py-4">
<div class="flex justify-between items-start mb-2">
<h3 class="font-bold text-gray-800">Content Title</h3>
<span class="bg-red-100 text-red-800 px-2 py-1 rounded-full text-xs font-bold">NSFW</span>
</div>
<p class="text-gray-600 text-sm">
This image has been flagged as sensitive content. Viewer discretion is advised.
</p>
</div>
</div>
<!-- Gallery Item 2 -->
<div class="image-container group">
<div class="rounded-xl overflow-hidden h-64">
<div class="bg-gray-200 border-2 border-dashed w-full h-full blurred">
<div class="overlay-warning" id="warning2">
<div>
<i class="fas fa-eye-slash text-3xl mb-3"></i>
<p class="font-bold">Explicit Material</p>
<p class="text-sm mt-1">Click to view</p>
</div>
</div>
</div>
</div>
<div class="py-4">
<div class="flex justify-between items-start mb-2">
<h3 class="font-bold text-gray-800">Content Title</h3>
<span class="bg-red-100 text-red-800 px-2 py-1 rounded-full text-xs font-bold">NSFW</span>
</div>
<p class="text-gray-600 text-sm">
Warning: This content may be inappropriate for some viewers.
</p>
</div>
</div>
<!-- Gallery Item 3 -->
<div class="image-container group">
<div class="rounded-xl overflow-hidden h-64">
<div class="bg-gray-200 border-2 border-dashed w-full h-full blurred">
<div class="overlay-warning" id="warning3">
<div>
<i class="fas fa-user-shield text-3xl mb-3"></i>
<p class="font-bold">Mature Audiences</p>
<p class="text-sm mt-1">Click to view</p>
</div>
</div>
</div>
</div>
<div class="py-4">
<div class="flex justify-between items-start mb-2">
<h3 class="font-bold text-gray-800">Content Title</h3>
<span class="bg-yellow-100 text-yellow-800 px-2 py-1 rounded-full text-xs font-bold">Warning</span>
</div>
<p class="text-gray-600 text-sm">
This content requires age verification before viewing.
</p>
</div>
</div>
<!-- Gallery Item 4 -->
<div class="image-container group">
<div class="rounded-xl overflow-hidden h-64">
<div class="bg-gray-200 border-2 border-dashed w-full h-full blurred">
<div class="overlay-warning" id="warning4">
<div>
<i class="fas fa-exclamation-circle text-3xl mb-3"></i>
<p class="font-bold">Sensitive Material</p>
<p class="text-sm mt-1">Click to view</p>
</div>
</div>
</div>
</div>
<div class="py-4">
<div class="flex justify-between items-start mb-2">
<h3 class="font-bold text-gray-800">Content Title</h3>
<span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs font-bold">Safe</span>
</div>
<p class="text-gray-600 text-sm">
This content has been reviewed and contains no explicit material.
</p>
</div>
</div>
</div>
<!-- Safety Information -->
<div class="bg-white rounded-xl shadow-lg p-8 mt-12">
<h2 class="text-2xl font-bold text-center mb-6">Viewing Sensitive Content Responsibly</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-user-lock text-blue-600 text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Privacy Protection</h3>
<p class="text-gray-600">Ensure your viewing environment is private and appropriate for sensitive content.</p>
</div>
<div class="text-center">
<div class="bg-yellow-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-exclamation-triangle text-yellow-600 text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Content Awareness</h3>
<p class="text-gray-600">Be aware that certain content may not be suitable for all audiences or cultural contexts.</p>
</div>
<div class="text-center">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-shield-alt text-green-600 text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Safe Interaction</h3>
<p class="text-gray-600">Report inappropriate content and respect content boundaries when sharing material.</p>
</div>
</div>
</div>
</div>
<script>
|