Files
worker/html/loyalty-rewards.html
Phuoc Nguyen 2125e85d40 first commit
2025-10-17 15:37:58 +07:00

126 lines
6.7 KiB
HTML

<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Đổi quà - EuroTile Worker</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="page-wrapper">
<!-- Header -->
<div class="header">
<a href="loyalty.html" class="back-button">
<i class="fas fa-arrow-left"></i>
</a>
<h1 class="header-title">Đổi quà tặng</h1>
<div style="width: 32px;"></div>
</div>
<div class="container">
<!-- Points Balance -->
<div class="card" style="background: linear-gradient(135deg, #005B9A 0%, #38B6FF 100%); color: white;">
<div class="text-center">
<p style="color: rgba(255,255,255,0.9); margin-bottom: 8px;">Điểm khả dụng</p>
<p style="font-size: 36px; font-weight: 700; color: white; margin: 0;">9,750</p>
<p style="color: rgba(255,255,255,0.8); font-size: 12px; margin-top: 8px;">
<i class="fas fa-info-circle"></i> Điểm sẽ hết hạn: 1,200 điểm vào 31/12/2023
</p>
</div>
</div>
<!-- Filter -->
<div class="filter-container">
<button class="filter-pill active">Tất cả</button>
<button class="filter-pill">Voucher</button>
<button class="filter-pill">Sản phẩm</button>
<button class="filter-pill">Dịch vụ</button>
<button class="filter-pill">Ưu đãi đặc biệt</button>
</div>
<!-- Rewards Grid -->
<div class="product-grid">
<!-- Reward 1 -->
<div class="product-card">
<img src="https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=300&h=200&fit=crop" alt="Voucher" class="product-image" style="height: 120px;">
<div class="product-info">
<div class="product-name">Voucher 500.000đ</div>
<div class="text-small text-muted mb-2">Áp dụng cho đơn từ 5 triệu</div>
<div class="text-primary text-bold mb-2">2,500 điểm</div>
<button class="btn btn-primary btn-sm btn-block" onclick="window.location.href='redeem-confirm.html'">
<i class="fas fa-gift"></i> Đổi quà
</button>
</div>
</div>
<!-- Reward 2 -->
<div class="product-card">
<img src="https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?w=300&h=200&fit=crop" alt="Gift" class="product-image" style="height: 120px;">
<div class="product-info">
<div class="product-name">Bộ keo chà ron cao cấp</div>
<div class="text-small text-muted mb-2">Weber.color comfort</div>
<div class="text-primary text-bold mb-2">3,000 điểm</div>
<button class="btn btn-primary btn-sm btn-block">
<i class="fas fa-gift"></i> Đổi quà
</button>
</div>
</div>
<!-- Reward 3 -->
<div class="product-card">
<img src="https://images.unsplash.com/photo-1540932239986-30128078f3c5?w=300&h=200&fit=crop" alt="Service" class="product-image" style="height: 120px;">
<div class="product-info">
<div class="product-name">Tư vấn thiết kế miễn phí</div>
<div class="text-small text-muted mb-2">1 buổi tư vấn tại nhà</div>
<div class="text-primary text-bold mb-2">5,000 điểm</div>
<button class="btn btn-primary btn-sm btn-block">
<i class="fas fa-gift"></i> Đổi quà
</button>
</div>
</div>
<!-- Reward 4 -->
<div class="product-card">
<img src="https://images.unsplash.com/photo-1615874694520-474822394e73?w=300&h=200&fit=crop" alt="Product" class="product-image" style="height: 120px;">
<div class="product-info">
<div class="product-name">Gạch trang trí Premium</div>
<div class="text-small text-muted mb-2">Bộ 10m² gạch cao cấp</div>
<div class="text-primary text-bold mb-2">8,000 điểm</div>
<button class="btn btn-primary btn-sm btn-block">
<i class="fas fa-gift"></i> Đổi quà
</button>
</div>
</div>
<!-- Reward 5 -->
<div class="product-card">
<img src="https://images.unsplash.com/photo-1523381210434-271e8be1f52b?w=300&h=200&fit=crop" alt="Merchandise" class="product-image" style="height: 120px;">
<div class="product-info">
<div class="product-name">Áo thun EuroTile</div>
<div class="text-small text-muted mb-2">Limited Edition 2023</div>
<div class="text-primary text-bold mb-2">1,500 điểm</div>
<button class="btn btn-primary btn-sm btn-block">
<i class="fas fa-gift"></i> Đổi quà
</button>
</div>
</div>
<!-- Reward 6 -->
<div class="product-card">
<img src="https://images.unsplash.com/photo-1556742400-b5b7a512f3d7?w=300&h=200&fit=crop" alt="VIP" class="product-image" style="height: 120px;">
<div class="product-info">
<div class="product-name">Nâng hạng thẻ Platinum</div>
<div class="text-small text-muted mb-2">Ưu đãi cao cấp 1 năm</div>
<div class="text-primary text-bold mb-2">15,000 điểm</div>
<button class="btn btn-secondary btn-sm btn-block" disabled>
Không đủ điểm
</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>