-
Notifications
You must be signed in to change notification settings - Fork 3
/
admin.php
134 lines (113 loc) · 5.08 KB
/
admin.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
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
session_start();
require_once('connection.php');
if(isset($_SESSION['User'])){ //meaning user is logged in
if(isset($_SESSION['type'])){
if( $_SESSION['type'] !== 'admin' ){
if( $_SESSION['type'] == 'bk' ){
header('Location: bklivestream.php');
}
elseif( $_SESSION['type'] == 'ys' ){
header('Location: yslivestream.php');
}
else {
header('Location: index.php');
}
}
}
}
else{
//meaning user is not logged or session had terminated
header('Location: index.php');
}
$queryselect1="SELECT * FROM `livelinkdb` WHERE linkid = 1";
$resultselect1=mysqli_query($con, $queryselect1);
if(mysqli_num_rows($resultselect1) == 1) {
$fetchlinkid1 = mysqli_fetch_assoc($resultselect1);
$livelink1 = $fetchlinkid1['link'];
}
$queryselect2="SELECT * FROM `livelinkdb` WHERE linkid = 2";
$resultselect2=mysqli_query($con, $queryselect2);
if(mysqli_num_rows($resultselect2) == 1) {
$fetchlinkid2 = mysqli_fetch_assoc($resultselect2);
$livelink2 = $fetchlinkid2['link'];
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Admin Console - RAM Live</title>
<link rel="shortcut icon" href="assets/admin/favicon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="css/admin.css"/>
<link rel="stylesheet" type="text/css" href="css/animate.css"/>
<link href="https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
</head>
<body>
<div id="landing_wrapper" class="center_content">
<h3 class="animated fadeInDown">Live admin console</h3>
<!-- Live Link 1 -->
<form class="login100-form" method="POST" action="livelink.php">
<div class="login100-livelinkgroup animated fadeInRight">
<div class="login100-div">
<div class="wrap-input100 animated fadeIn ani3">
<input class="input100" type="text" name="livelink1" placeholder="livestream link 1" value="<?php echo $livelink1; ?>">
<span class="focus-input100"></span>
</div>
</div>
<div class="container-login100-form-btn">
<div class="wrap-login100-form-btn">
<div class="login100-form-bgbtn"></div>
<button class="login100-form-btn" type="submit" name="confirm1">
confirm
</button>
</div>
</div>
</div>
</form>
<!-- Live Link 2 -->
<form class="login100-form lessmargin" method="POST" action="livelink.php">
<div class="login100-livelinkgroup animated fadeInLeft">
<div class="login100-div">
<div class="wrap-input100">
<input class="input100" type="text" name="livelink2" placeholder="livestream link 2" value="<?php echo $livelink2; ?>">
<span class="focus-input100"></span>
</div>
</div>
<div class="container-login100-form-btn animated fadeIn ani5">
<div class="wrap-login100-form-btn">
<div class="login100-form-bgbtn"></div>
<button class="login100-form-btn" type="submit" name="confirm2">
confirm
</button>
</div>
</div>
</div>
</form>
<div id="coming_soon" class="animated fadeIn">
<span class="staticbold">Static:</span> https://www.youtube.com/embed/XPcaVMNT-yU
</div>
<ul id="menu_bar" class="center_content animated fadeIn">
<li><a class="links" href="bklivestream.php" target="_blank">BK Live</a></li>
<li><a class="links" href="yslivestream.php" target="_blank">YS Live</a></li>
</ul>
</div>
<div class="videos animated fadeIn">
<iframe width="412" height="231.75" src="<?php echo $livelink1; ?>" frameborder="0" allowfullscreen></iframe>
<iframe width="412" height="231.75" src="<?php echo $livelink2; ?>" frameborder="0" allowfullscreen></iframe>
</div>
<!-- Logout -->
<div class="container-login100-form-btn2 animated fadeIn ani5">
<?php
if(isset($_SESSION['User'])) {
?>
<h5 class="phpjsn"><?php echo 'Jai Swaminarayan, ' . $_SESSION['User'].'<br/>'; ?></h5>
<div class="wrap-login100-form-btn">
<div class="login100-form-bgbtn"></div>
<?php echo '<a href="logout.php?logout"><button class="login100-form-btn2 type">log out</button></a>'; ?>
<?php
}
?>
</div>
</div>
</body>
</html>