-
Notifications
You must be signed in to change notification settings - Fork 3
/
yslivestream.php
133 lines (94 loc) · 4.52 KB
/
yslivestream.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
<?php
session_start();
require_once('connection.php');
if(isset($_SESSION['User'])){ //meaning user is logged in
if(isset($_SESSION['type'])){
if( $_SESSION['type'] !== 'ys' ){
if( $_SESSION['type'] !== 'admin' ){
if( $_SESSION['type'] == 'bk' ){
header('Location: bklivestream.php');
}
else {
header('Location: index.php');
}
}
}
}
}
else{
//meaning user is not logged or session had terminated
header('Location: index.php');
}
$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 lang="en">
<head>
<style type="text/css">
body {
margin: 0 0 0 0;
}
</style>
<!--Global Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title and Favicon -->
<title>YS RAM Livestream</title>
<link rel="shortcut icon" href="assets/favicon.png" type="image/x-icon">
<!-- Styling Links -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:200,300,300i,400,400i,600,600i,700,700i" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Slider Refs -->
<!-- Feather Icons -->
<link rel="stylesheet" type="text/css" href="fonts/feather/style.css">
<script src="js/modernizr.custom.js"></script>
<!-- /Slider Refs -->
</head>
<body id="top" oncontextmenu="return false">
<!-- Landing -->
<section class="landing fullpage" id="landing">
<div class="text">
<img src="assets/apm.png" class="apm animated fadeInDown ani1">
<h1 class="h1text animated fadeInUp ani2">day 1 - arrival</br><span class="bold">ys livestream</span></h1>
<iframe class="video animated fadeIn ani3" width="412" height="231.75" src="<?php echo $livelink2; ?>" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<img src="assets/footer.png" class="footer2 animated fadeIn ani4">
</div>
<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>
</section>
<!-- Regular JavaScript -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/waypoints.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/modernizr.js"></script>
</body>
</html>