File size: 2,921 Bytes
093a961
 
 
 
 
de05dab
093a961
 
 
de05dab
 
 
 
 
093a961
 
de05dab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
093a961
 
 
de05dab
 
 
 
093a961
de05dab
 
 
093a961
de05dab
 
 
 
 
 
 
 
 
 
093a961
 
de05dab
 
 
 
 
093a961
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ChipFlow Commander - Transactions</title>
    <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100">
    <div class="container py-8">
        <div class="max-w-md mx-auto bg-white rounded-xl shadow-md overflow-hidden p-6">
            <div class="text-center mb-6">
                <h1 class="text-2xl font-bold text-gray-800">๐Ÿ” Transaction History</h1>
                <p class="text-gray-600">Check your recent transactions</p>
            </div>

            <form class="mb-6">
                <div class="mb-4">
                    <label class="block text-gray-700 mb-2">Game ID</label>
                    <input type="text" class="w-full px-3 py-2 border rounded-lg" placeholder="Enter your game ID" required>
                </div>
                <button type="submit" class="w-full bg-purple-600 hover:bg-purple-700 text-white py-3 px-4 rounded-lg font-bold transition">
                    Search Transactions
                </button>
            </form>

            <div class="space-y-4">
                <div class="border-b pb-4">
                    <div class="flex justify-between items-center mb-2">
                        <span class="font-semibold">Top Up</span>
                        <span class="text-blue-600">+Rp500,000</span>
                    </div>
                    <div class="flex justify-between text-sm text-gray-500">
                        <span>2023-11-15 14:30</span>
                        <span>Completed</span>
                    </div>
                </div>

                <div class="border-b pb-4">
                    <div class="flex justify-between items-center mb-2">
                        <span class="font-semibold">Withdrawal</span>
                        <span class="text-red-600">-Rp1,300,000</span>
                    </div>
                    <div class="flex justify-between text-sm text-gray-500">
                        <span>2023-11-10 09:15</span>
                        <span>Processing</span>
                    </div>
                </div>

                <div class="border-b pb-4">
                    <div class="flex justify-between items-center mb-2">
                        <span class="font-semibold">Top Up</span>
                        <span class="text-blue-600">+Rp250,000</span>
                    </div>
                    <div class="flex justify-between text-sm text-gray-500">
                        <span>2023-11-05 18:45</span>
                        <span>Completed</span>
                    </div>
                </div>
            </div>

            <div class="mt-6 text-center text-sm text-gray-500">
                <p>Showing last 3 transactions</p>
            </div>
        </div>
    </div>
</body>
</html>