-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin page.php
67 lines (67 loc) · 2.46 KB
/
Admin page.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
<?php session_start(); ?>
<!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>Quản lý</title>
<?php include './assets/include/framework.php'; ?>
<link rel="stylesheet" href="./assets/css/uploadmain.css">
</head>
<body onload="Notification()">
<?php include './assets/include/header.php'; ?>
<main>
<?php
if (isset($_SESSION['proRG'])) {
$sql_admin = "SELECT IsAdmin FROM profile WHERE account = '$profile'";
$admin = $conn->query($sql_admin) or die($conn->error);
while ($row = $admin->fetch_assoc()) {
$IsAdmin = $row['IsAdmin'];
}
if ($IsAdmin == 1) {
echo '
<h1 class="text-center">Chào mừng Admin: <span class="text-warning"><?php echo $profile;?></span> Đã trở lại</h1>
<hr>
<div class="container">
<div class="row">
<div class="col"><a href="./ProfileControl.php"><button type="button" class="btn btn-outline-warning btn-lg">Quản lý người dùng</button></a></div>
<div class="col"><a href="./MusicControl.php"><button type="button" class="btn btn-outline-warning btn-lg">Quản lý nhạc</button></a></div>
</div>
</div>
';
}
else {
echo '<h1 class="text-center">Phát hiện phiên đăng nhập không hợp lệ</h1>';
}
}
else {
echo '<h1 class="text-center">Phát hiện phiên đăng nhập không hợp lệ</h1>';
}
?>
<?php include "./assets/include/music-kit.php"; ?>
</main>
<?php include './assets/include/footer.php'; ?>
<!-- Thông báo khi vào trang -->
<div class="position-fixed end-0 p-3" style="z-index: 11; bottom: 5rem">
<div id="liveToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<strong class="me-auto">KingSoundTrackMP3</strong>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body text-white bg-success">
Đây là nơi bạn quản lý người dùng và nhạc!
</div>
</div>
</div>
</div>
<script>
var toastLive = document.getElementById('liveToast')
function Notification() {
var toast = new bootstrap.Toast(toastLive)
toast.show()
}
</script>
<!-- Thông báo khi vào trang -->
</body>
</html>