forked from Irock23/menu
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (53 loc) · 2.5 KB
/
index.html
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
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>ElDewrito Server Browser</title>
<link rel='stylesheet' href='./css/epicfullscreen.css' type='text/css' media='all' />
<link rel='stylesheet' href='./css/style.css' type='text/css' media='all' />
<script src='./js/jquery-1.11.0.min.js'></script>
<script src='./js/jquery.ui.core.min.js'></script>
<script src='./js/jquery.epicfullscreen.js'></script>
<script src='./js/jquery.fancybox-1.3.4.pack.js'></script>
<script src='./js/settings.js'></script>
<!--<script src='./js/common.js'></script>-->
<script>
$(document).ready(function(){ //we only need this, and an error from not having epic slider stopped $(document).ready from working
if(window.location.href != "http://vicelio.thefeeltra.in/") {
window.location = "http://vicelio.thefeeltra.in/";
}
$('.epic-fullscreen').epicFullscreen({
background:'transparent',
opacity: udt_global_vars.background_image_opacity,
pattern: udt_global_vars.background_image_overlay_pattern_on_off
});
});
</script>
<script src='./js/dewrcon.js'></script>
<script src='./js/servers.js'></script>
<script src='./js/players.js'></script>
</head>
<body>
<div id="fullscreen-1" class="epic-fullscreen" data-image="images/background/background.jpg" style="z-index:-1;opacity:1;background-color:transparent;"></div>
<div class="Container">
<img src="./images/eldorito.png" alt="" height="85" width="100" class="center" />
<div id="browser-title" class="center">ELDEWRITO SERVER BROWSER</div>
<div id="players-online" class="center">0 Players Online</div>
<button id="refresh">Refresh</button>
<table id="serverlist">
<thead>
<tr>
<th>Server</th>
<th>Address</th>
<th>Game Type</th>
<th>Map</th>
<th>Status</th>
<th>Players</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</body>
</html>