-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_processing_.php
More file actions
134 lines (129 loc) · 4.08 KB
/
admin_processing_.php
File metadata and controls
134 lines (129 loc) · 4.08 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
$username = $_POST["username"];
$password = $_POST["password"];
if (($username == "Dremix Bot Dev") and ($password == "dremixbotdev@2020")) {
include "header.php";
echo'
<div class="scrollmenu">
<a href="index.html">Home</a>
<a href="commands.php">Commands</a>
<a href="contact.php">Contact</a>
<a href="https://discord.gg/pH2qMdFpAn">Support</a>
<a href="https://discord.com/login">Login</a>
<a href="https://classroom.google.com/c/MjIyNDU4OTI2MTQ1?cjc=gy7vrnj">Report</a>
<a href="admin.php" class="active">Admin Panel</a>
</div>
</body>
</html>
<!DOCKTYPE>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Admin panel processing">
<title>Communication Bot</title>
<style>
img{
width: 200px;
height: 200px;
border-radius: 5px;
}
.content{
border: black solid 5px;
border-radius: 5px;
margin: auto;
width: 200px;
height: 400px;
padding: 5px;
text-align: center;
}
.button {
background-color: #7289DA;
border: none;
width: 135px;
border-radius: 5px;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: auto;
cursor: pointer;
}
</style>
</head>
<body>
<br>
<div class="content">
<img src="bcb 3d bot.jpg" alt="bcb 3d bot.jpg">
<br><br>
<a class="button" href="https://filemanager.ai/new/#/c/185.27.134.11/epiz_27169707/eyJ0IjoiZnRwIiwiYyI6eyJwIjoiQ09WVXNiR09GVlQiLCJpIjoiXC8ifX0=">File Manager</a><br><br>
<a class="button" href="admin-bot-selection.php">Discord.py</a>
</div>
</body>
</html>';
}
else {
include "header.php";
echo'
<div class="scrollmenu">
<a href="index.html">Home</a>
<a href="commands.php">Commands</a>
<a href="contact.php">Contact</a>
<a href="https://discord.gg/pH2qMdFpAn">Support</a>
<a href="https://discord.com/login">Login</a>
<a href="https://classroom.google.com/c/MjIyNDU4OTI2MTQ1?cjc=gy7vrnj">Report</a>
<a href="admin.php" class="active">Admin Panel</a>
</div>
</body>
</html>
<!DOCKTYPE>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Admin panel processing">
<title>Communication Bot</title>
<style>
img{
width: 200px;
height: 200px;
border-radius: 5px;
}
.content{
border: black solid 5px;
border-radius: 5px;
margin: auto;
width: 200px;
height: 450px;
padding: 5px;
}
.form{
padding: 5px;
background: #0a0a0f;
border-radius: 5px;
width: 190px;
}
</style>
</head>
<body>
<br>
<div class="content">
<img src="bcb 3d bot.jpg" alt="bcb 3d bot.jpg">
<br><br>
<div class="form">
<form action="admin_processing_.php" method="post">
<p style="color: red;">*wrong password or user id</p>
User Name <br>
<input type="text" name="username" placeholder="User Name"><br>
Password <br>
<input type="password" name="password" placeholder="Password"><br><br>
<input type="submit" value="Submit">
</form>
</div>
</div>
</body>
</html>';
}
?>