Update public/index.html
Browse files- public/index.html +18 -9
public/index.html
CHANGED
|
@@ -3,9 +3,16 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>FunkBot Panel
|
| 7 |
<link rel="stylesheet" href="style.css">
|
| 8 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
</head>
|
| 10 |
<body>
|
| 11 |
<!-- Video Background -->
|
|
@@ -13,11 +20,12 @@
|
|
| 13 |
<video autoplay muted loop id="funk-video">
|
| 14 |
<source src="" type="video/mp4">
|
| 15 |
</video>
|
|
|
|
| 16 |
</div>
|
| 17 |
|
| 18 |
<!-- Main Panel -->
|
| 19 |
<div class="panel">
|
| 20 |
-
<!-- Auth Section
|
| 21 |
<div id="auth-section">
|
| 22 |
<div class="header">
|
| 23 |
<h1>π΅ FunkBot Panel</h1>
|
|
@@ -43,11 +51,11 @@
|
|
| 43 |
</div>
|
| 44 |
</div>
|
| 45 |
|
| 46 |
-
<!-- Bot Control Section
|
| 47 |
<div id="bot-section" style="display: none;">
|
| 48 |
<div class="dashboard">
|
| 49 |
<div class="header">
|
| 50 |
-
<h1
|
| 51 |
<div class="controls">
|
| 52 |
<button id="theme-toggle">π Dark Mode</button>
|
| 53 |
<button id="music-toggle">π Play Music</button>
|
|
@@ -55,19 +63,20 @@
|
|
| 55 |
</div>
|
| 56 |
|
| 57 |
<div class="terminal">
|
| 58 |
-
<div id="output"
|
| 59 |
<div class="input-group">
|
| 60 |
-
<input type="text" id="command-input" placeholder="Enter command..."
|
| 61 |
<button id="send-command">Send</button>
|
| 62 |
</div>
|
| 63 |
</div>
|
| 64 |
</div>
|
| 65 |
</div>
|
| 66 |
</div>
|
| 67 |
-
|
| 68 |
-
<!-- Connection Status
|
| 69 |
<div id="connection-status"></div>
|
| 70 |
|
|
|
|
| 71 |
<script src="script.js"></script>
|
| 72 |
</body>
|
| 73 |
</html>
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>FunkBot Panel</title>
|
| 7 |
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<style>
|
| 9 |
+
/* Force terminal visibility */
|
| 10 |
+
#bot-section, #terminal, #output, #command-input {
|
| 11 |
+
display: block !important;
|
| 12 |
+
opacity: 1 !important;
|
| 13 |
+
visibility: visible !important;
|
| 14 |
+
}
|
| 15 |
+
</style>
|
| 16 |
</head>
|
| 17 |
<body>
|
| 18 |
<!-- Video Background -->
|
|
|
|
| 20 |
<video autoplay muted loop id="funk-video">
|
| 21 |
<source src="" type="video/mp4">
|
| 22 |
</video>
|
| 23 |
+
<div id="video-overlay"></div>
|
| 24 |
</div>
|
| 25 |
|
| 26 |
<!-- Main Panel -->
|
| 27 |
<div class="panel">
|
| 28 |
+
<!-- Auth Section -->
|
| 29 |
<div id="auth-section">
|
| 30 |
<div class="header">
|
| 31 |
<h1>π΅ FunkBot Panel</h1>
|
|
|
|
| 51 |
</div>
|
| 52 |
</div>
|
| 53 |
|
| 54 |
+
<!-- Bot Control Section -->
|
| 55 |
<div id="bot-section" style="display: none;">
|
| 56 |
<div class="dashboard">
|
| 57 |
<div class="header">
|
| 58 |
+
<h1>π€ WhatsApp Bot Terminal</h1>
|
| 59 |
<div class="controls">
|
| 60 |
<button id="theme-toggle">π Dark Mode</button>
|
| 61 |
<button id="music-toggle">π Play Music</button>
|
|
|
|
| 63 |
</div>
|
| 64 |
|
| 65 |
<div class="terminal">
|
| 66 |
+
<div id="output"></div>
|
| 67 |
<div class="input-group">
|
| 68 |
+
<input type="text" id="command-input" placeholder="Enter command...">
|
| 69 |
<button id="send-command">Send</button>
|
| 70 |
</div>
|
| 71 |
</div>
|
| 72 |
</div>
|
| 73 |
</div>
|
| 74 |
</div>
|
| 75 |
+
|
| 76 |
+
<!-- Connection Status -->
|
| 77 |
<div id="connection-status"></div>
|
| 78 |
|
| 79 |
+
<script src="/socket.io/socket.io.js"></script>
|
| 80 |
<script src="script.js"></script>
|
| 81 |
</body>
|
| 82 |
</html>
|