-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
106 lines (91 loc) · 3.08 KB
/
index.php
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
session_start();
if (!isset($_SESSION["id"])) {
header("Location: 125.php");
exit();
}
include 'configdb.php';
$id = $_SESSION["id"];
$name = $_SESSION["name"];
//$coins = $_SESSION["coins"];
$FbUid = $_SESSION["FbUid"];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatWithAiOfficial</title>
<link rel="stylesheet" href="assets/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="messenger-container">
<div class="messenger-header" id="myBtn">
<h1 style="text-align:center ">OctoBotWebv1 | ⚙️</h1>
<i align="left">💰Coins: <span id="coins">0</span> | 👤<?php echo $name; ?> | <?php
include 'userlogindata.php';
if ($result_count_users->num_rows > 0) {
while ($row = $result_count_users->fetch_assoc()) {
echo "👥" . $row["total_users"] . "";
}
} else {
echo "0 results";
}
?></i>
<?php
if(isset($_GET['hard'])){
echo "<p style='color: orange;'>OctoBot: ".$_GET['hard']."</p>";
}
?>
</div>
<div class="messenger-chat">
<div class="chat-messages" id="chatMessages">
<!-- dirr na to -->
</div>
<form id="messageForm">
<input type="text" id="userName" placeholder="Your Name" value="<?php echo $name; ?>" hidden>
<input type="text" id="message" name="message" placeholder="Type your message...">
<button type="submit" id="sendButton">Send</button>
</form>
</div>
</div>
<!--meow-->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close" id="closeBtn">×</span>
<center><h style="font-size:50px">🐙</h></center>
<p>ChatWithAi (OctoBotWeb🐙) is a bot modules modified by RJRD aim is to create something wierd</p>
<fieldset>
<details>
<summary>DEVELOPER:
</summary>
<p>-Develop by: Rejard</p>
<a href="https://www.facebook.com/rejardbentazarofficial "><i class="fa fa-facebook-official"> /rejardbentazarofficial</i></a>
<br>
<hr></hr>
</details>
<details>
<summary>CHATWITHAI OFFICIAL GC: </summary>
<section>
<a href="https://m.me/j/Abbl63EsX-6_NN7W/"><i class="fa fa-link "></i> https://m.me/j/Abbl63EsX-6_NN7W/</a>
</section>
</details><br>
<button id="claimButton">🎁Claim</button>
</fieldset>
</div>
</div>
<!-- Modal Structure -->
<div id="myModal2" class="modal">
<div class="modal-content">
<span class="close">✖️</span>
<p>Welcome to <strong>OctoBotWeb</strong> gaya lang po eto ng messenger bot kaso nasa web at hshshs </p>
<button id="claimButton">🎁Claim</button>
</div>
</div>
<marquee behavior="scroll" direction="left">Claim Your Free 5 Coins every 20 minutes</marquee>
<script src="assets/scripts.js"></script>
<script src="assets/features.js" ></script>
</body>
</html>