forked from LUNIServer/UniverseLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
launcher.php
35 lines (34 loc) · 1.15 KB
/
launcher.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
<!DOCTYPE html>
<html class="mythran">
<head>
<title>LUNIServer - LEGO Universe, Newly Imagined</title>
<link rel="stylesheet" href="css/lu.css?launcher=1" type="text/css"/>
</head>
<body style="overflow:hidden;">
<div style="position: relative">
<div class="left">
<div class="box">
<h3>Welcome to LUNI:</h3><h4>LEGO Universe, Newly Imagined!</h4>
</div>
<br>
<span style="color: #FFF">The LEGO Group has not endorsed or authorized the operation of this game and is not liable for any safety issues in relation to the operation of this game.</span>
<div class="alert bottom">
<h4 style="color: #FF0000;">NOTE: Be aware that this server is in EARLY development.</h4>
</div>
</div>
<p style="position: fixed; bottom: 0; width: 100%; text-align: center; color: #444;">
<a href="launcher.php?launcher=1">HOME</a>
</p>
<div class="right box">
<h3>Changelog</h3>
<hr/>
<pre class="changelog">
<?php
$file = file_get_contents('changelog.txt');
echo $file;
?></pre>
<a class="btn fixed-bottom" href="changelog.php" target="_blank"><span>Full Changelog</span></a>
</div>
</div>
</body>
</html>