-
Notifications
You must be signed in to change notification settings - Fork 3
/
Join Room.php
74 lines (64 loc) · 1.97 KB
/
Join Room.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
<?php
session_start();
if (!isset($_SESSION['username'])) {
$username = "Test Username";
} else {
$username = $_SESSION['username'];
}
$body = <<<BODY
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Codystar' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Lobster Two' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Marvel' rel='stylesheet'>
</head>
<body>
<section class="container topnav">
<center>
<a class="icon" style="position: fixed; left: 0;"><i class="fa fa-user-circle-o" style="color: black;">
<section class="container topnavtext">
$username
</section>
</i></a>
<a class="icon" href="Login.php" style="position: fixed; right: 0;"><i class="fa fa-sign-out">
<section class="container topnavtext">
Logout
</section>
</i></a>
</center>
</section>
<section class="container header">
<h1>JUKEBOX</h1>
<h2>Join a Room</h2>
</section>
<section class="container list form-list">
<ul>
<form action="/Jukebox/Currently Playing.php">
<li>
<label>Room Code:</label>
<input type="text" placeholder="Enter Room Code">
</li>
</form>
</ul>
</section>
<section class="container list item-list">
<ul>
<li><a class="item" href="Currently Playing.php">Join<i class="fa fa-angle-right"></i></a></li>
</ul>
</section>
<section class="container nav">
<center>
<a class="icon" href="Home.php"><i class="fa fa-home"></i></a>
<a class="icon" href="Manage Playlists.php"><i class="fa fa-list"></i></a>
<a class="icon" href="Currently Playing.php"><i class="fa fa-play"></i></a>
</center>
</section>
</body>
</html>
BODY;
echo $body;
?>