Spaces:
Running
Running
| <html> | |
| <head> | |
| <title>My app</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <meta charset="utf-8"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| </head> | |
| <body class="flex justify-center items-center h-screen overflow-hidden bg-white font-sans text-center px-6"> | |
| <div class="w-full max-w-md mx-auto bg-white rounded-xl shadow-md p-8"> | |
| <h1 class="text-3xl font-bold text-center text-gray-800 mb-6">ChipFlow Commander</h1> | |
| <div class="space-y-4"> | |
| <a href="/customer_topup.html" class="block w-full bg-blue-600 hover:bg-blue-700 text-white text-center py-3 px-6 rounded-lg font-bold transition"> | |
| π° Top Up Chips | |
| </a> | |
| <a href="/withdraw.html" class="block w-full bg-green-600 hover:bg-green-700 text-white text-center py-3 px-6 rounded-lg font-bold transition"> | |
| π§ Withdraw Chips | |
| </a> | |
| <a href="/transactions.html" class="block w-full bg-purple-600 hover:bg-purple-700 text-white text-center py-3 px-6 rounded-lg font-bold transition"> | |
| π Check Transaction | |
| </a> | |
| <div class="pt-4 border-t border-gray-200"> | |
| <a href="/admin_login.html" class="block w-full bg-gray-800 hover:bg-gray-900 text-white text-center py-3 px-6 rounded-lg font-bold transition"> | |
| π Admin Login | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <script></script> | |
| </body> | |
| </html> | |