Spaces:
Running
Running
File size: 25,588 Bytes
915be0e | 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 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adult Content Management | Admin Panel</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">
<style>
/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: #1f2937;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 4px;
}
/* Fade in animation */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.fade-in {
animation: fadeIn 0.3s ease-in-out;
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<div class="flex flex-col md:flex-row min-h-screen">
<!-- Sidebar -->
<aside class="w-full md:w-64 bg-gray-800 border-r border-gray-700">
<div class="p-4 border-b border-gray-700">
<h1 class="text-xl font-bold flex items-center">
<i class="fas fa-lock mr-2 text-pink-500"></i>
<span class="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-purple-600">
NSFW Admin
</span>
</h1>
<p class="text-xs text-gray-400 mt-1">Content Management System</p>
</div>
<nav class="p-4">
<div class="mb-6">
<h3 class="text-xs uppercase text-gray-500 font-bold mb-3 tracking-wider">Management</h3>
<ul class="space-y-2">
<li>
<a href="#" class="flex items-center p-2 text-sm rounded-md bg-gray-700 text-white">
<i class="fas fa-photo-film mr-2"></i> Media Library
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-sm rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-users mr-2"></i> Models
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-sm rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-tags mr-2"></i> Categories
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-sm rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-chart-line mr-2"></i> Analytics
</a>
</li>
</ul>
</div>
<div class="mb-6">
<h3 class="text-xs uppercase text-gray-500 font-bold mb-3 tracking-wider">Moderation</h3>
<ul class="space-y-2">
<li>
<a href="#" class="flex items-center p-2 text-sm rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-flag mr-2"></i> Reported Content
<span class="ml-auto bg-red-500 text-white text-xs px-2 py-0.5 rounded-full">3</span>
</a>
</li>
<li>
<a href="#" class="flex items-center p-2 text-sm rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-user-lock mr-2"></i> User Restrictions
</a>
</li>
</ul>
</div>
<div>
<h3 class="text-xs uppercase text-gray-500 font-bold mb-3 tracking-wider">System</h3>
<ul class="space-y-2">
<li>
<a href="#" class="flex items-center p-2 text-sm rounded-md hover:bg-gray-700 text-gray-300 hover:text-white">
<i class="fas fa-cog mr-2"></i> Settings
</a>
</li>
</ul>
</div>
</nav>
</aside>
<!-- Main Content -->
<main class="flex-1 custom-scrollbar overflow-y-auto">
<!-- Header -->
<header class="bg-gray-800 border-b border-gray-700 p-4 flex items-center justify-between sticky top-0 z-10">
<h2 class="text-lg font-semibold">Media Library</h2>
<div class="flex items-center space-x-4">
<div class="relative">
<input type="text" placeholder="Search..." class="bg-gray-700 rounded-md pl-10 pr-4 py-2 text-sm w-64 focus:outline-none focus:ring-2 focus:ring-pink-500">
<i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
</div>
<div class="flex items-center space-x-2">
<div class="relative">
<button class="p-2 rounded-full hover:bg-gray-700 focus:outline-none">
<i class="fas fa-bell text-gray-300"></i>
<span class="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500"></span>
</button>
</div>
<div class="flex items-center space-x-2">
<img src="https://randomuser.me/api/portraits/lego/5.jpg" alt="User" class="h-8 w-8 rounded-full">
<span class="text-sm hidden md:inline">Admin</span>
</div>
</div>
</div>
</header>
<!-- Warning Banner -->
<div class="bg-gradient-to-r from-red-800 to-pink-800 p-4 flex items-center justify-between">
<div class="flex items-center">
<i class="fas fa-triangle-exclamation mr-3 text-xl text-yellow-300"></i>
<div>
<h3 class="font-bold">Age-Restricted Content Management</h3>
<p class="text-sm opacity-90">You are accessing a restricted administrative area for adult content.</p>
</div>
</div>
<button class="bg-black bg-opacity-30 hover:bg-opacity-50 px-4 py-1 rounded-md text-sm flex items-center">
<i class="fas fa-info-circle mr-2"></i> Legal Info
</button>
</div>
<!-- Content Area -->
<div class="p-6">
<!-- Controls -->
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6 space-y-4 md:space-y-0">
<div class="flex items-center space-x-3">
<h3 class="font-semibold">Recent Uploads</h3>
<div class="text-xs bg-gray-700 px-2 py-1 rounded-full">Last 30 days</div>
</div>
<div class="flex space-x-3">
<select class="bg-gray-700 border border-gray-600 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-pink-500">
<option>All Categories</option>
<option>Videos</option>
<option>Images</option>
<option>Galleries</option>
</select>
<button class="bg-pink-600 hover:bg-pink-700 px-4 py-2 rounded-md text-sm font-medium flex items-center">
<i class="fas fa-plus mr-2"></i> Upload New
</button>
</div>
</div>
<!-- Stats Cards -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 mb-6">
<div class="bg-gray-800 rounded-lg p-4 border-l-4 border-pink-500">
<h4 class="text-sm text-gray-400 mb-1">Total Content</h4>
<div class="flex items-end justify-between">
<p class="text-2xl font-bold">8,742</p>
<div class="text-xs bg-pink-500 bg-opacity-20 text-pink-300 px-2 py-1 rounded-full">
+12.5% <i class="fas fa-arrow-up ml-1"></i>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-4 border-l-4 border-purple-500">
<h4 class="text-sm text-gray-400 mb-1">Pending Review</h4>
<div class="flex items-end justify-between">
<p class="text-2xl font-bold">184</p>
<div class="text-xs bg-purple-500 bg-opacity-20 text-purple-300 px-2 py-1 rounded-full">
-3.2% <i class="fas fa-arrow-down ml-1"></i>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-4 border-l-4 border-blue-500">
<h4 class="text-sm text-gray-400 mb-1">Flagged Content</h4>
<div class="flex items-end justify-between">
<p class="text-2xl font-bold">27</p>
<div class="text-xs bg-blue-500 bg-opacity-20 text-blue-300 px-2 py-1 rounded-full">
+8.1% <i class="fas fa-arrow-up ml-1"></i>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-4 border-l-4 border-green-500">
<h4 class="text-sm text-gray-400 mb-1">Active Models</h4>
<div class="flex items-end justify-between">
<p class="text-2xl font-bold">312</p>
<div class="text-xs bg-green-500 bg-opacity-20 text-green-300 px-2 py-1 rounded-full">
+5.7% <i class="fas fa-arrow-up ml-1"></i>
</div>
</div>
</div>
</div>
<!-- Content Table -->
<div class="bg-gray-800 rounded-lg overflow-hidden border border-gray-700 fade-in">
<table class="min-w-full divide-y divide-gray-700">
<thead class="bg-gray-750">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">ID</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Preview</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Title</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Category</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Uploaded</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Status</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-400 uppercase tracking-wider">Actions</th>
</tr>
</thead>
<tbody class="bg-gray-800 divide-y divide-gray-700">
<tr class="hover:bg-gray-750 transition-colors">
<td class="px-6 py-4 whitespace-nowrap text-sm font-mono text-gray-300">#8542</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="bg-gray-700 w-10 h-10 rounded overflow-hidden flex items-center justify-center">
<i class="fas fa-photo-film text-gray-400"></i>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-white truncate max-w-xs">Summer_vacation_part1.mp4</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-300">
<span class="bg-blue-500 bg-opacity-20 text-blue-300 px-2 py-1 rounded-full text-xs">Amateur</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-300">2 hours ago</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 py-1 text-xs rounded-full bg-green-500 bg-opacity-20 text-green-300">Approved</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<button class="text-blue-400 hover:text-blue-300 mr-2">
<i class="fas fa-edit"></i>
</button>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-trash"></i>
</button>
</td>
</tr>
<tr class="hover:bg-gray-750 transition-colors">
<td class="px-6 py-4 whitespace-nowrap text-sm font-mono text-gray-300">#8541</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="bg-gray-700 w-10 h-10 rounded overflow-hidden flex items-center justify-center">
<i class="fas fa-photo-film text-gray-400"></i>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-white truncate max-w-xs">Bikini_photo_shoot_2023.zip</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-300">
<span class="bg-purple-500 bg-opacity-20 text-purple-300 px-2 py-1 rounded-full text-xs">Professional</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-300">5 hours ago</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 py-1 text-xs rounded-full bg-yellow-500 bg-opacity-20 text-yellow-300">Pending</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<button class="text-blue-400 hover:text-blue-300 mr-2">
<i class="fas fa-edit"></i>
</button>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-trash"></i>
</button>
</td>
</tr>
<tr class="hover:bg-gray-750 transition-colors">
<td class="px-6 py-4 whitespace-nowrap text-sm font-mono text-gray-300">#8540</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="bg-gray-700 w-10 h-10 rounded overflow-hidden flex items-center justify-center">
<i class="fas fa-photo-film text-gray-400"></i>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-white truncate max-w-xs">Hot_tub_party_XXX.jpg</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-300">
<span class="bg-pink-500 bg-opacity-20 text-pink-300 px-2 py-1 rounded-full text-xs">Premium</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-300">1 day ago</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 py-1 text-xs rounded-full bg-green-500 bg-opacity-20 text-green-300">Approved</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<button class="text-blue-400 hover:text-blue-300 mr-2">
<i class="fas fa-edit"></i>
</button>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-trash"></i>
</button>
</td>
</tr>
<tr class="hover:bg-gray-750 transition-colors">
<td class="px-6 py-4 whitespace-nowrap text-sm font-mono text-gray-300">#8539</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="bg-gray-700 w-10 h-10 rounded overflow-hidden flex items-center justify-center">
<i class="fas fa-photo-film text-gray-400"></i>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-white truncate max-w-xs">Gym_hunks_vol3.mp4</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-300">
<span class="bg-red-500 bg-opacity-20 text-red-300 px-2 py-1 rounded-full text-xs">Gay</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-300">2 days ago</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 py-1 text-xs rounded-full bg-red-500 bg-opacity-20 text-red-300">Flagged</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<button class="text-blue-400 hover:text-blue-300 mr-2">
<i class="fas fa-edit"></i>
</button>
<button class="text-red-400 hover:text-red-300">
<i class="fas fa-trash"></i>
</button>
</td>
</tr>
</tbody>
</table>
<!-- Pagination -->
<div class="px-6 py-4 border-t border-gray-700 flex items-center justify-between">
<div class="text-sm text-gray-400">
Showing <span class="font-medium">1</span> to <span class="font-medium">4</span> of <span class="font-medium">124</span> results
</div>
<div class="flex space-x-2">
<button class="px-3 py-1 rounded-md bg-gray-700 text-sm disabled:opacity-50" disabled>
<i class="fas fa-chevron-left"></i>
</button>
<button class="px-3 py-1 rounded-md bg-pink-600 text-sm font-medium">1</button>
<button class="px-3 py-1 rounded-md bg-gray-700 hover:bg-gray-600 text-sm">2</button>
<button class="px-3 py-1 rounded-md bg-gray-700 hover:bg-gray-600 text-sm">3</button>
<button class="px-3 py-1 rounded-md bg-gray-700 text-sm">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
</div>
</main>
</div>
<!-- Age Verification Modal -->
<div id="ageVerificationModal" class="fixed inset-0 bg-black bg-opacity-75 flex items-center justify-center z-50 p-4">
<div class="bg-gray-800 rounded-lg max-w-md w-full p-6 border border-pink-500">
<div class="flex justify-center mb-6">
<div class="bg-pink-600 bg-opacity-20 p-4 rounded-full">
<i class="fas fa-user-lock text-3xl text-pink-500"></i>
</div>
</div>
<h3 class="text-xl font-bold text-center mb-4">Age Verification Required</h3>
<p class="text-gray-300 text-center mb-6">
This administrative panel provides access to age-restricted content.
You must be at least 18 years old to proceed.
</p>
<div class="flex flex-col space-y-3">
<button id="verifyBtn" class="bg-pink-600 hover:bg-pink-700 py-3 rounded-md font-medium flex items-center justify-center">
<i class="fas fa-check-circle mr-2"></i> I am 18+ and authorized to access
</button>
<button class="bg-gray-700 hover:bg-gray-600 py-3 rounded-md font-medium">
Exit Dashboard
</button>
</div>
<div class="mt-6 text-xs text-gray-500 text-center">
By entering, you agree to our <a href="#" class="text-pink-400 hover:underline">Terms of Service</a>
and confirm you are legally authorized to access adult content in your jurisdiction.
</div>
</div>
</div>
<script>
// Age verification modal logic
document.addEventListener('DOMContentLoaded', function() {
const modal = document.getElementById('ageVerificationModal');
const verifyBtn = document.getElementById('verifyBtn');
// Show modal on page load (in a real app, would check cookies/localStorage first)
modal.classList.remove('hidden');
verifyBtn.addEventListener('click', function() {
// In a real app, would set a cookie or localStorage item
modal.classList.add('hidden');
});
// Table row click handler (preview functionality)
const tableRows = document.querySelectorAll('tbody tr');
tableRows.forEach(row => {
row.addEventListener('click', function(e) {
// Don't trigger if clicking on action buttons
if (!e.target.closest('button')) {
// In a real app, this would open a preview modal
console.log('Opening preview for:', this.querySelector('td:nth-child(3)').textContent.trim());
}
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Boobs00/saucy" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |