File size: 18,633 Bytes
42c6dbc |
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 418 419 420 421 422 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Crossover Writer</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>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
min-height: 100vh;
}
.glow-text {
text-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
}
.glow-box {
box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}
.iframe-container {
position: relative;
overflow: hidden;
padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.responsive-iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
border: none;
}
.typewriter h1 {
overflow: hidden;
border-right: .15em solid #3b82f6;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #3b82f6; }
}
.domain-badge {
background: rgba(30, 58, 138, 0.5);
border: 1px solid rgba(59, 130, 246, 0.5);
border-radius: 20px;
padding: 6px 12px;
font-size: 0.8rem;
margin: 0 4px;
display: inline-block;
cursor: pointer;
transition: all 0.3s ease;
}
.domain-badge:hover {
background: rgba(59, 130, 246, 0.3);
transform: translateY(-2px);
}
.feedback-section {
background: rgba(30, 41, 59, 0.5);
border-radius: 12px;
padding: 2rem;
margin-top: 2rem;
}
.feedback-input {
background: rgba(15, 23, 42, 0.7);
border: 1px solid rgba(59, 130, 246, 0.3);
color: white;
padding: 0.75rem 1rem;
border-radius: 8px;
width: 100%;
margin-bottom: 1rem;
}
.feedback-input:focus {
outline: none;
border-color: rgba(59, 130, 246, 0.7);
}
.submit-btn {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}
.toast {
position: fixed;
bottom: 20px;
right: 20px;
background: rgba(30, 41, 59, 0.9);
color: white;
padding: 16px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
transform: translateY(100px);
opacity: 0;
transition: all 0.3s ease;
z-index: 1000;
}
.toast.show {
transform: translateY(0);
opacity: 1;
}
.security-badge {
background: rgba(220, 38, 38, 0.2);
border: 1px solid rgba(220, 38, 38, 0.5);
color: #f87171;
border-radius: 6px;
padding: 4px 8px;
font-size: 0.75rem;
font-weight: 600;
display: inline-flex;
align-items: center;
margin-left: 8px;
}
.security-badge i {
margin-right: 4px;
}
.update-card {
background: rgba(30, 41, 59, 0.7);
border-left: 4px solid #3b82f6;
border-radius: 8px;
padding: 1.5rem;
margin-bottom: 1.5rem;
transition: all 0.3s ease;
}
.update-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.update-date {
color: #93c5fd;
font-size: 0.85rem;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
}
.update-date i {
margin-right: 6px;
}
.security-icon {
color: #f87171;
font-size: 1.5rem;
margin-right: 1rem;
}
</style>
</head>
<body class="text-gray-100">
<div class="container mx-auto px-4 py-12">
<!-- Header Section -->
<header class="text-center mb-16">
<div class="flex justify-center mb-6">
<div class="bg-blue-500/20 p-4 rounded-full glow-box">
<i class="fas fa-random text-5xl text-blue-400"></i>
</div>
</div>
<h1 class="text-5xl font-bold mb-4 glow-text typewriter">AI Crossover Writer</h1>
<p class="text-xl text-blue-300 mb-8">Where your wildest crossover dreams come to life</p>
</header>
<!-- Security Update Section -->
<section class="mb-16">
<div class="flex items-center justify-center mb-8">
<h2 class="text-3xl font-bold text-center glow-text">Security Updates</h2>
<span class="security-badge">
<i class="fas fa-shield-alt"></i> IMPORTANT
</span>
</div>
<div class="max-w-4xl mx-auto">
<div class="update-card">
<div class="flex items-start">
<div class="security-icon">
<i class="fas fa-bug"></i>
</div>
<div>
<div class="update-date">
<i class="far fa-calendar-alt"></i> Latest Update: April 2025
</div>
<h3 class="text-xl font-semibold mb-2">XSS Protection Measures Implemented</h3>
<p class="text-gray-300 mb-3">
Due to recent incidents involving "script kiddies" attempting to inject malicious code into our platform,
we've implemented robust Cross-Site Scripting (XSS) protection measures.
</p>
<div class="bg-gray-800/50 p-4 rounded-lg mb-3">
<h4 class="font-medium text-red-400 mb-2">
<i class="fas fa-exclamation-triangle"></i> What happened?
</h4>
<p class="text-gray-300 text-sm">
Immature individuals ("script kiddies") thought it would be "cool" to try injecting JavaScript code
that could potentially harm other users' experience. These attacks were amateurish but disruptive.
</p>
</div>
<div class="bg-gray-800/50 p-4 rounded-lg">
<h4 class="font-medium text-green-400 mb-2">
<i class="fas fa-shield-virus"></i> Our Response
</h4>
<ul class="text-gray-300 text-sm list-disc pl-5 space-y-1">
<li>Implemented strict input sanitization for all user-generated content</li>
<li>Added Content Security Policy (CSP) headers to prevent unauthorized script execution</li>
<li>Enhanced server-side validation for all API endpoints</li>
<li>Added real-time monitoring for suspicious activity</li>
<li>Improved error handling to prevent information leakage</li>
</ul>
</div>
</div>
</div>
</div>
<div class="update-card">
<div class="flex items-start">
<div class="security-icon">
<i class="fas fa-user-shield"></i>
</div>
<div>
<div class="update-date">
<i class="far fa-calendar-alt"></i> Ongoing Commitment
</div>
<h3 class="text-xl font-semibold mb-2">Our Security Promise</h3>
<p class="text-gray-300">
We take security seriously and will continue to monitor and improve our defenses against all types of attacks.
While we understand the curiosity of beginners in cybersecurity, we cannot tolerate actions that disrupt
the experience for our legitimate users.
</p>
<p class="text-gray-400 mt-3 text-sm">
<i class="fas fa-info-circle"></i> If you're interested in ethical hacking, we recommend practicing on
<a href="https://www.hackthebox.com" target="_blank" class="text-blue-400 hover:underline">proper platforms</a>
designed for security research.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Main Content -->
<main class="mb-16">
<div class="text-center mb-8">
<p class="text-gray-400 mb-4">Try these working domains:</p>
<div class="flex justify-center flex-wrap gap-2">
<span class="domain-badge" onclick="window.open('https://crossoverwriter.on.websim.ai', '_blank')">crossoverwriter.on.websim.ai</span>
<span class="domain-badge" onclick="window.open('https://crossoverwriter--andytran.on.websim.ai', '_blank')">crossoverwriter--andytran.on.websim.ai</span>
</div>
</div>
<div class="bg-black/30 rounded-2xl overflow-hidden glow-box">
<div class="p-4 bg-gray-900 flex items-center">
<div class="flex space-x-2 mr-4">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<div class="text-sm text-gray-400">crossoverwriter.on.websim.ai</div>
</div>
<div class="iframe-container">
<iframe class="responsive-iframe" src="https://crossoverwriter.on.websim.ai" allowfullscreen></iframe>
</div>
</div>
</main>
<!-- Features Section -->
<section class="mb-16">
<h2 class="text-3xl font-bold text-center mb-12 glow-text">Why Choose Our Crossover Writer?</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-800/50 p-6 rounded-xl hover:glow-box transition-all">
<div class="text-blue-400 text-4xl mb-4">
<i class="fas fa-brain"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Advanced AI</h3>
<p class="text-gray-300">Powered by cutting-edge AI that understands character personalities and universe rules to create believable crossovers.</p>
</div>
<div class="bg-gray-800/50 p-6 rounded-xl hover:glow-box transition-all">
<div class="text-purple-400 text-4xl mb-4">
<i class="fas fa-random"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Endless Combinations</h3>
<p class="text-gray-300">Mix and match any characters, worlds, or genres - from sci-fi to fantasy, superheroes to historical figures.</p>
</div>
<div class="bg-gray-800/50 p-6 rounded-xl hover:glow-box transition-all">
<div class="text-green-400 text-4xl mb-4">
<i class="fas fa-magic"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Creative Inspiration</h3>
<p class="text-gray-300">Break through writer's block with AI-generated crossover ideas that spark your imagination.</p>
</div>
</div>
</section>
<!-- Feedback Section -->
<section class="feedback-section glow-box">
<h2 class="text-2xl font-bold mb-6 text-center glow-text">Report Bugs or Leave Feedback</h2>
<form id="feedbackForm" class="max-w-lg mx-auto">
<div class="mb-4">
<label for="name" class="block text-gray-300 mb-2">Name (optional)</label>
<input type="text" id="name" class="feedback-input" placeholder="Your name">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-300 mb-2">Email (optional)</label>
<input type="email" id="email" class="feedback-input" placeholder="Your email">
</div>
<div class="mb-4">
<label for="message" class="block text-gray-300 mb-2">Your Feedback</label>
<textarea id="message" class="feedback-input" rows="4" placeholder="Describe the bug or leave your feedback..." required></textarea>
</div>
<div class="text-center">
<button type="submit" class="submit-btn">Submit Feedback</button>
</div>
</form>
</section>
<!-- Footer -->
<footer class="text-center text-gray-400 text-sm mt-16">
<p>© 2025 AI Crossover Writer. All rights reserved.</p>
<p class="mt-2">Powered by advanced AI technology to bring your crossover dreams to life.</p>
<div class="flex justify-center space-x-4 mt-4">
<a href="#" class="hover:text-blue-400"><i class="fab fa-twitter"></i></a>
<a href="#" class="hover:text-pink-400"><i class="fab fa-discord"></i></a>
<a href="#" class="hover:text-red-400"><i class="fab fa-youtube"></i></a>
</div>
</footer>
</div>
<!-- Toast Notification -->
<div id="toast" class="toast">
<div class="flex items-center">
<i class="fas fa-check-circle text-green-400 mr-2"></i>
<span>Preparing your email...</span>
</div>
</div>
<script>
// Handle domain badge clicks
document.querySelectorAll('.domain-badge').forEach(badge => {
badge.addEventListener('click', function() {
const domain = this.textContent.trim();
window.open(`https://${domain}`, '_blank');
});
});
// Handle feedback form submission
document.getElementById('feedbackForm').addEventListener('submit', function(e) {
e.preventDefault();
// Get form values
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const message = document.getElementById('message').value;
// Show toast notification
const toast = document.getElementById('toast');
toast.classList.add('show');
// Prepare email content
const subject = `Feedback for AI Crossover Writer${name ? ` from ${name}` : ''}`;
const body = `Feedback Details:\n\n${message}\n\n${email ? `Reply to: ${email}` : ''}`;
// Encode for mailto URL
const encodedSubject = encodeURIComponent(subject);
const encodedBody = encodeURIComponent(body);
// Create mailto link with multiple recipients
const mailtoLink = `mailto:[email protected],[email protected]?subject=${encodedSubject}&body=${encodedBody}`;
// Open email client after a small delay to show toast
setTimeout(() => {
window.location.href = mailtoLink;
// Hide toast after 3 seconds
setTimeout(() => {
toast.classList.remove('show');
}, 3000);
}, 1000);
// Reset form
this.reset();
});
</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=huggingfacecurator/ai-crossover-writer-updated" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |