-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtos.php
More file actions
32 lines (30 loc) · 1.34 KB
/
tos.php
File metadata and controls
32 lines (30 loc) · 1.34 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
32
<?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>
<!-- Use ul or ol as your rules. OR use just text. Up to you just had to remove the TOS since the web hoster will have to make up the rules. -->
<br/>
</body>
</html>