-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (29 loc) · 1.41 KB
/
index.php
File metadata and controls
31 lines (29 loc) · 1.41 KB
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
<?php
session_start();
$StreamIdentity = $_SESSION['StreamName'];
// $StreamKey = $_SESSION['StreamKey'];
// $StreamGame = $_SESSION['StreamGame'];
?>
<html>
<head>
<title>Wolf Stream Online RTMP Service</title>
</head>
<body>
<center><b>Welcome streamers to your own stream.</b><br/>
<table border = '1' style = 'background-color: gray;'>
<tr>
<td><a href='index.php'><img src='img/button_home.png' /></a></td>
<td><?php if($StreamIdentity == ""){ echo "<a href='login.php'>Login</a>"; }else{echo "Welcome, $StreamIdentity";} ?></td>
<td><?php if($StreamIdentity == ""){ echo "<a href='register.php'>Register</a>"; }else{echo "Already Registered. <a href='logout.php'>Logout</a>";} ?></td>
<td><?php if($StreamIdentity == ""){ echo "---"; }else{echo "<a href='editstream.php'>Edit your stream account</a>";} ?></td>
<td><a href='tos.php'>Terms of Service</a></td>
<td><a href='privacy.php'>Privacy of Policy</a></td>
<td><a href='searchstream.php'>Search for a streamer</a></td>
<td><a href='howto.php'>How to stream in this service</a></td>
<td><a href='report.php'>Report a streamer</a></td>
</tr>
</table>
<br/></center>
<p><b>If you enjoy your stay come watch other streamers stream live of their favorite games.</b><br/><br/><b>Featured Streamers</b><br/><a href="watchstream.php?streamid=1">TWSICommunity</a> Streams everyday.<br/></p></center>
</body>
</html>