-
Notifications
You must be signed in to change notification settings - Fork 2
/
demo.php
57 lines (49 loc) · 1.62 KB
/
demo.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
<?php
// Include standard functions
include("inc/functions.inc.php");
page_header(NULL, "Demo");
?>
<ul>
<li><a href="https://mrbsdemo.uk.to/mrbs/">Demonstration installation</a></li>
<li><a href="https://mrbsdemo.uk.to/periodmrbs/">Demonstration using periods</a></li>
<li><a href="https://mrbsdemo.uk.to/mrbs/admin.php">Area/room configuration</a></li>
<li><a href="https://mrbsdemo.uk.to/mrbs/help.php">Additional Help</a></li>
</ul>
<p>
These installations should always be running the latest released version.
If they happen to be running an older version they should still be a good
demo of what MRBS does. Sometimes the Sourceforge web servers hosting the
demo run rather slowly, you should see better performance on your own
web server!
</p>
<p>
The installations are a standard installation of MRBS, using the simpler
'config' authentication system, to stop people deleting users.
You can use the <a href="https://mrbsdemo.uk.to/mrbs/admin.php">area/room configuration</a>
system, although we'd prefer it if you didn't delete other users' configuration!
You can login as any of the following users, only the user "admin" has
administrative rights. Additional help is available under the
<a href="https://mrbsdemo.uk.to/mrbs/help.php">help</a> link at the top of the page.
</p>
<table class="prettytable">
<thead>
<tr>
<th>Username</th>
<th>Password</th>
</tr>
</thead>
<tbody>
<tr>
<td>demo1</td><td>demo</td>
</tr>
<tr>
<td>demo2</td><td>demo</td>
</tr>
<tr>
<td>admin</td><td>admin</td>
</tr>
</tbody>
</table>
<?php
page_footer();
?>