-
Notifications
You must be signed in to change notification settings - Fork 0
/
meeting.html
87 lines (85 loc) · 3.44 KB
/
meeting.html
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
<?php
//include auth_session.php file on all user panel pages
include("auth_session.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Meeting_Screen</title>
<!-- Bootstrap and Font Awesome CSS Libraries -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet">
<!-- <link rel="stylesheet" type="text/css" href="style.css"/> -->
<link rel="stylesheet" href="assets/css/style_meet.css" />
</head>
<body>
<?php
require('db.php');
if (isset($_REQUEST['status'])) {?>
<div class="form" style="padding: vertical horizontal;">
<p>Hey, User!</p>
<p>You are now directed to meeting screen</p>
</div>
<!-- <div id="local-stream-container" class="col p-0">
<div id="mute-overlay" class="col">
<i id="mic-icon" class="fas fa-microphone-slash"></i>
</div>
<div id="no-local-video" class="col text-center">
<i id="user-icon" class="fas fa-user"></i>
</div>
<div id="local-video" class="col p-0"></div>
</div>
-->
<!-- <div id="container">
<div id="main-container">
<div id="screen-share-btn-container">
insert button to share screen -->
<!-- </div>
<div id="buttons-container">
insert buttons to toggle audio/video and leave/end call -->
<!-- </div>
<div id="full-screen-video"></div>
<div id="lower-video-bar">
<div id="remote-streams-container">
<div id="remote-streams"> -->
<!-- insert remote streams dynamically -->
<!-- </div>
</div>
<div id="local-stream-container">
<div id="local-video"></div>
</div>
</div>
</div>
</div>
<div id="screen-share-btn-container" class="col-2 float-right text-right mt-2">
<button id="screen-share-btn" type="button" class="btn btn-lg">
<i id="screen-share-icon" class="fas fa-share-square"></i>
</button> -->
<!-- </div> -->
<div id="buttons-container" class="row justify-content-center mt-3">
<div class="col-md-2 text-center">
<button id="mic-btn" type="button" class="btn btn-block btn-dark btn-lg">
<i id="mic-icon" class="fas fa-microphone"></i>
</button>
</div>
<div class="col-md-2 text-center">
<button id="video-btn" type="button" class="btn btn-block btn-dark btn-lg">
<i id="video-icon" class="fas fa-video"></i>
</button>
</div>
<div class="col-md-2 text-center">
<button id="exit-btn" type="button" class="btn btn-block btn-danger btn-lg">
<i id="exit-icon" class="fas fa-phone-slash"></i>
</button>
</div>
</div>
<div class="form col-md-12 text-center" style="padding: vertical horizontal;width:100%; height: 200px;margin-top: 130px; margin-right: 75px">
<p><a href="logout.php">Logout</a></p>
</div><!-- <?php }else{ ?>
<div class="form col-md-12 text-center" style="padding: vertical horizontal;width:100%; height: 200px;margin-top: 130px; margin-right: 75px">
<p>You are unauthorised user for this meeting!<a href="logout.php">Logout</a></p>
<?php }?> -->
</body>
</html>