-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
250 lines (213 loc) Β· 5.89 KB
/
Copy pathadmin.html
File metadata and controls
250 lines (213 loc) Β· 5.89 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<!DOCTYPE html>
<html>
<head>
<title>Admin Panel β’ NTM Stream</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background: #0a1128;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
}
h2 {
color: #00bfff;
margin-bottom: 20px;
}
.container {
background: rgba(255, 255, 255, 0.05);
padding: 30px;
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
width: 90%;
max-width: 350px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
input {
width: 100%;
box-sizing: border-box;
padding: 12px;
margin-bottom: 15px;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.2);
background: rgba(0,0,0,0.2);
color: white;
outline: none;
}
input:focus {
border-color: #00bfff;
}
/* ποΈ Password Container Styles */
.password-container {
position: relative;
width: 100%;
margin-bottom: 15px;
}
.password-container input {
margin-bottom: 0;
padding-right: 40px;
}
.toggle-eye {
position: absolute;
right: 12px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
font-size: 18px;
user-select: none;
opacity: 0.7;
transition: 0.3s;
}
.toggle-eye:hover {
opacity: 1;
}
button {
width: 100%;
padding: 12px;
margin-bottom: 12px;
border: none;
border-radius: 8px;
background: #00bfff;
color: black;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background: #008cba;
transform: scale(1.02);
}
.btn-danger {
background: #ff4d4d;
color: white;
margin-top: 15px;
}
.btn-danger:hover {
background: #cc0000;
}
</style>
</head>
<body>
<h2>βοΈ Admin Panel</h2>
<div id="loginBox" class="container">
<h3>Secure Login</h3>
<input type="email" id="username" placeholder="Admin Email">
<div class="password-container">
<input type="password" id="password" placeholder="Password">
<span class="toggle-eye" id="togglePassword" onclick="togglePass()">π</span>
</div>
<button onclick="login()">Login</button>
</div>
<div id="menuBox" class="container" style="display:none;">
<h3 style="margin-bottom: 25px;">Dashboard</h3>
<button onclick="goTo('add.html')">β Add </button>
<button onclick="goTo('edit.html')">βοΈ Edit </button>
<button onclick="goTo('delete.html')">ποΈ Delete </button>
<button onclick="goTo('export.html')">πΎ Export Data</button>
<button onclick="goTo('reports.html')">β View Reports</button>
<button onclick="goTo('telegram.html')">π’ Telegram Broadcaster</button>
<button class="btn-danger" onclick="logout()">Logout</button>
</div>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.23.0/firebase-auth-compat.js"></script>
<script src="firebase-config.js"></script>
<script>
firebase.initializeApp(firebaseConfig);
const auth = firebase.auth();
// ==========================================
// ποΈ SHOW/HIDE PASSWORD LOGIC
// ==========================================
function togglePass() {
const passInput = document.getElementById("password");
const eyeIcon = document.getElementById("togglePassword");
if (passInput.type === "password") {
passInput.type = "text";
eyeIcon.innerText = "π";
} else {
passInput.type = "password";
eyeIcon.innerText = "ποΈ";
}
}
// ==========================================
// π ROLLING 24-HOUR MEMORY LOGIC
// ==========================================
function setAdminSession() {
const expireTime = Date.now() + 86400000; // Current time + 24 Hours
localStorage.setItem("ntm_admin_session", expireTime.toString());
}
function checkAdminSession() {
const session = localStorage.getItem("ntm_admin_session");
if (session) {
const expiry = parseInt(session);
if (Date.now() < expiry) {
// π ROLLING SESSION: Give them another full 24 hours!
setAdminSession();
return true;
} else {
localStorage.removeItem("ntm_admin_session"); // Expired!
return false;
}
}
return false; // No session found
}
// ==========================================
// π AUTHENTICATION
// ==========================================
let isLoggingIn = false;
function login() {
const email = document.getElementById("username").value;
const pass = document.getElementById("password").value;
if (!email || !pass) {
alert("Please enter both email and password.");
return;
}
isLoggingIn = true;
auth.setPersistence(firebase.auth.Auth.Persistence.LOCAL)
.then(() => {
return auth.signInWithEmailAndPassword(email, pass);
})
.then(() => {
setAdminSession();
isLoggingIn = false;
showMenu();
})
.catch(err => {
isLoggingIn = false;
alert("Login Failed: " + err.message);
});
}
function logout() {
localStorage.removeItem("ntm_admin_session");
auth.signOut().then(() => {
window.location.reload();
});
}
function showMenu() {
document.getElementById("loginBox").style.display = "none";
document.getElementById("menuBox").style.display = "block";
}
// AUTH LISTENER
auth.onAuthStateChanged(user => {
if (isLoggingIn) return;
if (user && checkAdminSession()) {
showMenu();
} else {
if (user) {
auth.signOut();
}
document.getElementById("loginBox").style.display = "block";
document.getElementById("menuBox").style.display = "none";
}
});
function goTo(page) {
window.location.href = page;
}
</script>
</body>
</html>