File size: 1,438 Bytes
4a0ce95 315722c 235e839 4a0ce95 235e839 4a77552 235e839 4a0ce95 235e839 4a0ce95 235e839 4a0ce95 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WhatsApp Bot Panel</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="login-screen">
<h1>Login</h1>
<input id="username" placeholder="Username" />
<input id="password" type="password" placeholder="Password" />
<button id="login-btn">Login</button>
<div id="login-message"></div>
</div>
<div id="panel" style="display: none;">
<h1>Bot Panel</h1>
<div>
<label>Your User ID: <span id="userId-display"></span></label>
<button id="start-btn">Start Session</button>
</div>
<div id="chat-container" style="display: none;">
<div id="messages" style="border: 1px solid #ccc; height: 300px; overflow-y: scroll;"></div>
<input id="input" placeholder="Type command or bot input..." />
<button id="send-btn">Send</button>
</div>
<div id="admin-panel" style="display: none;">
<h2>Admin Controls</h2>
<button id="get-users-btn">Get All Users</button>
<div id="user-list"></div>
<button id="get-banned-btn">Get Banned List</button>
<div id="banned-list"></div>
</div>
</div>
<script src="https://cdn.socket.io/4.7.2/socket.io.min.js"></script>
<script src="./script.js"></script>
</body>
</html> |