Spaces:
Running
Running
| <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> |