Spaces:
Running
Running
File size: 1,450 Bytes
093a961 de05dab 093a961 de05dab 093a961 de05dab | 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 | <!DOCTYPE html>
<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>
|