Spaces:
Running
Running
File size: 36,014 Bytes
d8a0e76 |
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 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Secure P2P Crypto Exchange | Non-Indicative Quotes</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>
.gradient-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
}
.quote-card {
transition: all 0.3s ease;
border-left: 4px solid transparent;
}
.quote-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.bid-card {
border-left-color: #10b981;
}
.ask-card {
border-left-color: #ef4444;
}
.blur-effect {
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.disclaimer-banner {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { background-color: rgba(239, 68, 68, 0.1); }
50% { background-color: rgba(239, 68, 68, 0.3); }
100% { background-color: rgba(239, 68, 68, 0.1); }
}
.security-badge {
position: relative;
}
.security-badge::after {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border: 2px solid rgba(16, 185, 129, 0.5);
border-radius: 50%;
animation: ripple 2s infinite;
}
@keyframes ripple {
0% { transform: scale(0.95); opacity: 0.7; }
70% { transform: scale(1.1); opacity: 0.3; }
100% { transform: scale(1.15); opacity: 0; }
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Security Header -->
<div class="bg-black text-white py-2 px-4 flex items-center justify-between text-sm">
<div class="flex items-center space-x-4">
<div class="flex items-center">
<i class="fas fa-lock-shield text-green-400 mr-2"></i>
<span>256-bit SSL Encryption</span>
</div>
<div class="flex items-center">
<i class="fas fa-shield-check text-green-400 mr-2"></i>
<span>Multi-Signature Wallets</span>
</div>
</div>
<div class="flex items-center space-x-4">
<div class="flex items-center">
<i class="fas fa-clock text-yellow-400 mr-2"></i>
<span id="current-time"></span>
</div>
<div class="flex items-center">
<i class="fas fa-globe text-blue-400 mr-2"></i>
<span>UTC+0</span>
</div>
</div>
</div>
<!-- Main Navigation -->
<nav class="gradient-bg text-white shadow-lg">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="security-badge">
<i class="fas fa-shield-alt text-white text-2xl"></i>
</div>
<h1 class="text-2xl font-bold">SecureP2P</h1>
</div>
<div class="hidden md:flex space-x-6">
<a href="#" class="hover:text-blue-200 transition">Markets</a>
<a href="#" class="hover:text-blue-200 transition">Portfolio</a>
<a href="#" class="hover:text-blue-200 transition">OTC Desk</a>
<a href="#" class="hover:text-blue-200 transition">Escrow</a>
<a href="#" class="hover:text-blue-200 transition">Support</a>
</div>
<div class="flex items-center space-x-4">
<button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-lg font-medium transition">
<i class="fas fa-user-plus mr-2"></i>Register
</button>
<button class="bg-green-600 hover:bg-green-700 px-4 py-2 rounded-lg font-medium transition">
<i class="fas fa-sign-in-alt mr-2"></i>Login
</button>
</div>
<button class="md:hidden text-white">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Disclaimer Banner -->
<div class="disclaimer-banner bg-red-100 border-l-4 border-red-500 text-red-800 p-4">
<div class="container mx-auto flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-triangle text-red-500 mt-1 mr-3"></i>
</div>
<div>
<h3 class="font-bold">Important Notice: Non-Indicative Quotes</h3>
<p class="text-sm">All prices displayed on this platform are for informational purposes only and do not constitute firm offers to buy or sell. Quotes are subject to change without notice and actual execution prices may vary based on market conditions and counterparty negotiation.</p>
</div>
</div>
</div>
<!-- Main Content -->
<div class="container mx-auto px-4 py-8">
<div class="flex flex-col lg:flex-row gap-8">
<!-- Left Column - Market Overview -->
<div class="lg:w-1/4">
<div class="bg-white rounded-xl shadow-md p-6 mb-6">
<h2 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-chart-line text-blue-500 mr-2"></i>
Market Overview
</h2>
<div class="space-y-4">
<div class="flex justify-between items-center pb-2 border-b border-gray-100">
<span class="font-medium">BTC/USD</span>
<span class="text-green-500">$42,876.34 <span class="text-xs">+2.4%</span></span>
</div>
<div class="flex justify-between items-center pb-2 border-b border-gray-100">
<span class="font-medium">ETH/USD</span>
<span class="text-green-500">$2,345.67 <span class="text-xs">+1.8%</span></span>
</div>
<div class="flex justify-between items-center pb-2 border-b border-gray-100">
<span class="font-medium">XRP/USD</span>
<span class="text-red-500">$0.5432 <span class="text-xs">-0.5%</span></span>
</div>
<div class="flex justify-between items-center pb-2 border-b border-gray-100">
<span class="font-medium">SOL/USD</span>
<span class="text-green-500">$98.76 <span class="text-xs">+3.2%</span></span>
</div>
<div class="flex justify-between items-center">
<span class="font-medium">ADA/USD</span>
<span class="text-red-500">$0.4567 <span class="text-xs">-1.1%</span></span>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md p-6">
<h2 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-filter text-blue-500 mr-2"></i>
Filters
</h2>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Asset</label>
<select class="w-full p-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
<option>All Assets</option>
<option>Bitcoin (BTC)</option>
<option>Ethereum (ETH)</option>
<option>Ripple (XRP)</option>
<option>Solana (SOL)</option>
<option>Cardano (ADA)</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Fiat Currency</label>
<select class="w-full p-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
<option>USD</option>
<option>EUR</option>
<option>GBP</option>
<option>JPY</option>
<option>CAD</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Amount Range</label>
<div class="flex space-x-2">
<input type="number" placeholder="Min" class="w-1/2 p-2 border border-gray-300 rounded-lg">
<input type="number" placeholder="Max" class="w-1/2 p-2 border border-gray-300 rounded-lg">
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Payment Method</label>
<select class="w-full p-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
<option>All Methods</option>
<option>Bank Transfer</option>
<option>PayPal</option>
<option>Cash (Local)</option>
<option>Wire Transfer</option>
<option>Other Crypto</option>
</select>
</div>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg transition">
Apply Filters
</button>
</div>
</div>
</div>
<!-- Center Column - Quotes Board -->
<div class="lg:w-2/4">
<div class="bg-white rounded-xl shadow-md p-6 mb-6">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold flex items-center">
<i class="fas fa-exchange-alt text-blue-500 mr-2"></i>
P2P Quotes Board
</h2>
<div class="flex items-center space-x-2">
<span class="text-sm text-gray-600">Auto-refresh:</span>
<div class="relative">
<select class="appearance-none bg-gray-100 border border-gray-300 rounded-lg pl-3 pr-8 py-1 text-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500">
<option>15 sec</option>
<option selected>30 sec</option>
<option>1 min</option>
<option>5 min</option>
<option>Manual</option>
</select>
<div class="absolute inset-y-0 right-0 flex items-center pr-2 pointer-events-none">
<i class="fas fa-chevron-down text-gray-500 text-xs"></i>
</div>
</div>
<button class="bg-gray-100 hover:bg-gray-200 p-2 rounded-lg transition">
<i class="fas fa-sync-alt text-gray-600"></i>
</button>
</div>
</div>
<div class="mb-6">
<div class="flex border-b border-gray-200">
<button class="px-4 py-2 font-medium border-b-2 border-blue-500 text-blue-600">All Quotes</button>
<button class="px-4 py-2 font-medium text-gray-500 hover:text-blue-600">BTC</button>
<button class="px-4 py-2 font-medium text-gray-500 hover:text-blue-600">ETH</button>
<button class="px-4 py-2 font-medium text-gray-500 hover:text-blue-600">Altcoins</button>
</div>
</div>
<div class="space-y-4">
<!-- Sample Quote Cards -->
<div class="quote-card bid-card bg-white border border-gray-200 rounded-lg p-4 shadow-sm">
<div class="flex justify-between items-start">
<div>
<div class="flex items-center mb-1">
<span class="font-bold text-lg mr-2">BTC/USD</span>
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">BID</span>
</div>
<div class="text-sm text-gray-600 mb-2">
<span class="font-medium">Size:</span> 2.5 BTC | <span class="font-medium">Payment:</span> Bank Transfer
</div>
<div class="flex items-center text-sm">
<i class="fas fa-user-shield text-gray-500 mr-1"></i>
<span class="text-gray-600">Verified Trader (98% rating)</span>
</div>
</div>
<div class="text-right">
<div class="text-2xl font-bold text-green-600">$42,750.00</div>
<div class="text-sm text-gray-500">-0.29% from mid</div>
<button class="mt-2 bg-green-600 hover:bg-green-700 text-white py-1 px-3 rounded-lg text-sm transition">
Initiate Trade
</button>
</div>
</div>
</div>
<div class="quote-card ask-card bg-white border border-gray-200 rounded-lg p-4 shadow-sm">
<div class="flex justify-between items-start">
<div>
<div class="flex items-center mb-1">
<span class="font-bold text-lg mr-2">ETH/USD</span>
<span class="text-xs bg-red-100 text-red-800 px-2 py-1 rounded">ASK</span>
</div>
<div class="text-sm text-gray-600 mb-2">
<span class="font-medium">Size:</span> 15 ETH | <span class="font-medium">Payment:</span> PayPal
</div>
<div class="flex items-center text-sm">
<i class="fas fa-user-tie text-gray-500 mr-1"></i>
<span class="text-gray-600">Institutional Partner</span>
</div>
</div>
<div class="text-right">
<div class="text-2xl font-bold text-red-600">$2,355.00</div>
<div class="text-sm text-gray-500">+0.40% from mid</div>
<button class="mt-2 bg-red-600 hover:bg-red-700 text-white py-1 px-3 rounded-lg text-sm transition">
Initiate Trade
</button>
</div>
</div>
</div>
<div class="quote-card bid-card bg-white border border-gray-200 rounded-lg p-4 shadow-sm">
<div class="flex justify-between items-start">
<div>
<div class="flex items-center mb-1">
<span class="font-bold text-lg mr-2">XRP/USD</span>
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">BID</span>
</div>
<div class="text-sm text-gray-600 mb-2">
<span class="font-medium">Size:</span> 5,000 XRP | <span class="font-medium">Payment:</span> Other Crypto
</div>
<div class="flex items-center text-sm">
<i class="fas fa-user-check text-gray-500 mr-1"></i>
<span class="text-gray-600">New Trader (No rating)</span>
</div>
</div>
<div class="text-right">
<div class="text-2xl font-bold text-green-600">$0.5420</div>
<div class="text-sm text-gray-500">-0.22% from mid</div>
<button class="mt-2 bg-green-600 hover:bg-green-700 text-white py-1 px-3 rounded-lg text-sm transition">
Initiate Trade
</button>
</div>
</div>
</div>
<div class="quote-card ask-card bg-white border border-gray-200 rounded-lg p-4 shadow-sm">
<div class="flex justify-between items-start">
<div>
<div class="flex items-center mb-1">
<span class="font-bold text-lg mr-2">SOL/USD</span>
<span class="text-xs bg-red-100 text-red-800 px-2 py-1 rounded">ASK</span>
</div>
<div class="text-sm text-gray-600 mb-2">
<span class="font-medium">Size:</span> 50 SOL | <span class="font-medium">Payment:</span> Wire Transfer
</div>
<div class="flex items-center text-sm">
<i class="fas fa-medal text-gray-500 mr-1"></i>
<span class="text-gray-600">Elite Trader (100% rating, 200+ trades)</span>
</div>
</div>
<div class="text-right">
<div class="text-2xl font-bold text-red-600">$99.25</div>
<div class="text-sm text-gray-500">+0.50% from mid</div>
<button class="mt-2 bg-red-600 hover:bg-red-700 text-white py-1 px-3 rounded-lg text-sm transition">
Initiate Trade
</button>
</div>
</div>
</div>
</div>
<div class="mt-6 flex justify-center">
<button class="bg-blue-600 hover:bg-blue-700 text-white py-2 px-6 rounded-lg transition">
Load More Quotes
</button>
</div>
</div>
</div>
<!-- Right Column - Trade Info -->
<div class="lg:w-1/4">
<div class="bg-white rounded-xl shadow-md p-6 mb-6">
<h2 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-info-circle text-blue-500 mr-2"></i>
Trade Information
</h2>
<div class="space-y-4">
<div class="p-4 bg-blue-50 rounded-lg">
<h3 class="font-bold text-blue-800 mb-2">How P2P Trading Works</h3>
<ol class="list-decimal list-inside text-sm text-blue-800 space-y-1">
<li>Find a quote that matches your needs</li>
<li>Initiate trade with counterparty</li>
<li>Funds are held in secure escrow</li>
<li>Complete payment as agreed</li>
<li>Seller releases crypto from escrow</li>
</ol>
</div>
<div class="p-4 bg-green-50 rounded-lg">
<h3 class="font-bold text-green-800 mb-2">Security Features</h3>
<ul class="list-disc list-inside text-sm text-green-800 space-y-1">
<li>Multi-signature escrow wallets</li>
<li>Identity verification for all traders</li>
<li>Encrypted communications</li>
<li>Dispute resolution system</li>
<li>24/7 monitoring</li>
</ul>
</div>
<div class="p-4 bg-yellow-50 rounded-lg">
<h3 class="font-bold text-yellow-800 mb-2">Risk Disclaimer</h3>
<p class="text-sm text-yellow-800">
P2P trading carries risks including counterparty risk, price volatility, and potential fraud. Only trade with verified counterparties and use our escrow service for all transactions.
</p>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md p-6">
<h2 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-chart-pie text-blue-500 mr-2"></i>
Market Depth
</h2>
<div class="mb-4">
<h3 class="font-medium text-gray-700 mb-2">BTC/USD</h3>
<div class="h-40 mb-2">
<div class="h-full flex">
<div class="w-1/2 bg-green-100 border-r border-green-200 relative">
<div class="absolute bottom-0 left-0 right-0 bg-green-300" style="height: 60%;"></div>
<div class="absolute top-1 left-1 text-xs font-medium text-green-800">Bids: $42,700 - $42,750</div>
</div>
<div class="w-1/2 bg-red-100 relative">
<div class="absolute bottom-0 left-0 right-0 bg-red-300" style="height: 40%;"></div>
<div class="absolute top-1 right-1 text-xs font-medium text-red-800">Asks: $42,850 - $42,900</div>
</div>
</div>
</div>
<div class="flex justify-between text-xs text-gray-500">
<span>Liquidity Depth</span>
<span>Spread: $150 (0.35%)</span>
</div>
</div>
<div class="mb-4">
<h3 class="font-medium text-gray-700 mb-2">ETH/USD</h3>
<div class="h-40 mb-2">
<div class="h-full flex">
<div class="w-1/2 bg-green-100 border-r border-green-200 relative">
<div class="absolute bottom-0 left-0 right-0 bg-green-300" style="height: 55%;"></div>
<div class="absolute top-1 left-1 text-xs font-medium text-green-800">Bids: $2,340 - $2,350</div>
</div>
<div class="w-1/2 bg-red-100 relative">
<div class="absolute bottom-0 left-0 right-0 bg-red-300" style="height: 45%;"></div>
<div class="absolute top-1 right-1 text-xs font-medium text-red-800">Asks: $2,355 - $2,365</div>
</div>
</div>
</div>
<div class="flex justify-between text-xs text-gray-500">
<span>Liquidity Depth</span>
<span>Spread: $15 (0.64%)</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Create Quote Modal (Hidden by default) -->
<div class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center p-4 z-50 hidden" id="create-quote-modal">
<div class="bg-white rounded-xl shadow-xl w-full max-w-md">
<div class="p-6">
<div class="flex justify-between items-center mb-4">
<h3 class="text-xl font-bold">Create New Quote</h3>
<button class="text-gray-500 hover:text-gray-700" onclick="document.getElementById('create-quote-modal').classList.add('hidden')">
<i class="fas fa-times"></i>
</button>
</div>
<form class="space-y-4">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Asset</label>
<select class="w-full p-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
<option>Bitcoin (BTC)</option>
<option>Ethereum (ETH)</option>
<option>Ripple (XRP)</option>
<option>Solana (SOL)</option>
<option>Cardano (ADA)</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Type</label>
<div class="flex space-x-4">
<label class="inline-flex items-center">
<input type="radio" name="quote-type" class="h-4 w-4 text-green-600" checked>
<span class="ml-2">Bid (Buy)</span>
</label>
<label class="inline-flex items-center">
<input type="radio" name="quote-type" class="h-4 w-4 text-red-600">
<span class="ml-2">Ask (Sell)</span>
</label>
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Price</label>
<input type="number" step="0.01" class="w-full p-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500" placeholder="Enter price">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Amount</label>
<input type="number" step="0.00000001" class="w-full p-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500" placeholder="Enter amount">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Payment Method</label>
<select class="w-full p-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500">
<option>Bank Transfer</option>
<option>PayPal</option>
<option>Cash (Local)</option>
<option>Wire Transfer</option>
<option>Other Crypto</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Terms & Conditions</label>
<textarea class="w-full p-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500" rows="2" placeholder="Any special terms?"></textarea>
</div>
<div class="pt-2">
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg transition">
Publish Quote
</button>
</div>
</form>
</div>
</div>
</div>
<!-- Footer -->
<footer class="gradient-bg text-white py-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-bold mb-4">SecureP2P</h3>
<p class="text-sm opacity-80">
The most secure peer-to-peer cryptocurrency trading platform for OTC and illiquid markets.
</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Trading</h3>
<ul class="space-y-2 text-sm">
<li><a href="#" class="hover:underline">Markets</a></li>
<li><a href="#" class="hover:underline">OTC Desk</a></li>
<li><a href="#" class="hover:underline">Escrow Service</a></li>
<li><a href="#" class="hover:underline">Fee Structure</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Information</h3>
<ul class="space-y-2 text-sm">
<li><a href="#" class="hover:underline">About Us</a></li>
<li><a href="#" class="hover:underline">Security</a></li>
<li><a href="#" class="hover:underline">Compliance</a></li>
<li><a href="#" class="hover:underline">API Documentation</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Support</h3>
<ul class="space-y-2 text-sm">
<li><a href="#" class="hover:underline">Help Center</a></li>
<li><a href="#" class="hover:underline">Dispute Resolution</a></li>
<li><a href="#" class="hover:underline">Contact Us</a></li>
<li><a href="#" class="hover:underline">Status</a></li>
</ul>
</div>
</div>
<div class="border-t border-blue-400 mt-8 pt-6 flex flex-col md:flex-row justify-between items-center">
<div class="text-sm opacity-80 mb-4 md:mb-0">
© 2023 SecureP2P. All rights reserved.
</div>
<div class="flex space-x-6">
<a href="#" class="hover:text-blue-200"><i class="fab fa-twitter"></i></a>
<a href="#" class="hover:text-blue-200"><i class="fab fa-telegram"></i></a>
<a href="#" class="hover:text-blue-200"><i class="fab fa-linkedin"></i></a>
<a href="#" class="hover:text-blue-200"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</footer>
<!-- Floating Action Button -->
<div class="fixed bottom-6 right-6">
<button class="bg-blue-600 hover:bg-blue-700 text-white p-4 rounded-full shadow-lg transition transform hover:scale-105" onclick="document.getElementById('create-quote-modal').classList.remove('hidden')">
<i class="fas fa-plus text-xl"></i>
</button>
</div>
<script>
// Update current time
function updateTime() {
const now = new Date();
const timeString = now.toLocaleTimeString('en-US', { hour: '2-digit', minute: '2-digit', hour12: true });
document.getElementById('current-time').textContent = timeString;
}
setInterval(updateTime, 1000);
updateTime();
// Simulate quote updates
function simulateQuoteUpdates() {
const quotes = document.querySelectorAll('.quote-card');
quotes.forEach(quote => {
// 20% chance to update price
if (Math.random() < 0.2) {
const priceElement = quote.querySelector('.text-2xl');
if (priceElement) {
const currentPrice = parseFloat(priceElement.textContent.replace(/[^0-9.-]/g, ''));
const change = (Math.random() * 0.5 - 0.25) / 100 * currentPrice;
const newPrice = currentPrice + change;
// Update price with animation
priceElement.style.transition = 'color 0.3s';
if (change > 0) {
priceElement.style.color = '#10b981';
} else if (change < 0) {
priceElement.style.color = '#ef4444';
}
priceElement.textContent = newPrice.toLocaleString('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: priceElement.textContent.includes('.') ? priceElement.textContent.split('.')[1].length : 2
}).replace('$', '$');
setTimeout(() => {
if (quote.classList.contains('bid-card')) {
priceElement.style.color = '#10b981';
} else {
priceElement.style.color = '#ef4444';
}
}, 300);
}
}
});
}
setInterval(simulateQuoteUpdates, 5000);
</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=privateuserh/niq-sys" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |