-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPageHeader.int
executable file
·73 lines (67 loc) · 4.11 KB
/
PageHeader.int
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE htm
<head>
<link id="theme" rel="stylesheet" type="text/css" href="UAncient.css" title="Ancient">
<link rel="alternate stylesheet" type="text/css" href="UStarship.css" title="Starship">
<title>Unreal Web Admin</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script>
function toggleTheme()
{
var theme = document.getElementsByTagName('link')[0];
if (theme.getAttribute('href') == 'UAncient.css') {
theme.setAttribute('href', 'UStarship.css');
} else {
theme.setAttribute('href', 'UAncient.css');
}
}
window.setInterval(function()
{
reloadIFrame();
}, 2000);
function reloadIFrame()
{
console.log('reloading..');
var MessageFrame = document.getElementById('MessageWindow');
var PlayersListFrame = document.getElementById('PlayerListWindow');
MessageFrame.onload = function ()
{
MessageFrame.contentWindow.scrollTo(0,999999);
}
MessageFrame.contentWindow.location.reload(true);
PlayersListFrame.src = "PlayerList";
PlayersListFrame.contentWindow.location.reload(true);
}
</script>
</head>
<body>
<!-- PageHeader -->
<table cellpadding="0" cellspacing="0">
<tr valign="top">
<td class="bgimage" width="256" height="256"></td>
<td class="bgimage2" width="100%" height="256"></td>
<th class="webadmin"><p><img src="images/unrealwebadmin.png" width="768" height="96"></p>
</th>
</tr>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td class="bgimage3" width="256" height="100%" bgcolor="#000000">
<p><a href="index.html" target="_self" title="Click here to go back to the main page"><img src="images/current.png" alt="Current" width="256" height="32" align="top"></a></p>
<p><a href="Mod_UWebAdmin.BanListGen" target="_self" title="Click here to access banlist" ><img src="images/banlist.png" alt="Banlist" width="256" height="32" align="top"></a></p>
<p><a href="Mod_UWebAdmin.FileUploadPage" target="_self" title="Click here to upload files"><img src="images/fileupload.png" width="256" height="32" alt="File Upload"></a></p>
<p><a href="Mod_UWebAdmin.MapSwitchPage" target="_self" title="Click here to change the current map" ><img src="images/switchmap.png" width="256" height="32" alt="Switch Map"></a></p>
<p><a href="Mod_UWebAdmin.PreferencesPageMain" target="_self" title="Click here to access advanced options"><img src="images/advoption.png" width="256" height="32" alt="Advanced Options"></a></p>
<p><a href="GameDefaults" target="_self" title="Click here to configure main game options"><img src="images/mainconfig.png" width="256" height="32" alt="Configure Game"></a></p>
<p><a href="Mod_UWebAdmin.MapListLinkPage" target="_self" title="Click here to configure the map list"><img src="images/maplist.png" width="256" height="32" alt="Maplist"></a></p>
<p><a href="Mod_UWebAdmin.ModLinkPage" target="_self" title="Click here to configure mods"><img src="images/modconfig.png" width="256" height="32" alt="Configure Mods"></a></p>
<p><a href="Mod_UWebAdmin.RepPageConfig" target="_self" title="Click here for server information"><img src="images/serverinfoconfig.png" width="256" height="32" alt="Configure Server Information"></a></p>
<p><a href="Mod_UWebAdmin.WebAdminConfigPage" target="_self" title="Click here for web admin users"><img src="images/webadminusers.png" width="256" height="32" alt="Web Admin Users"></a></p>
<p><a href="Mod_UWebAdmin.RestartMapCode" target="_self" title="Click here to restart current map"><img src="images/restartmap.png" width="256" height="32" alt="Restart Map"></a></p>
</td>
</tr>
</table>
<div class="copyright">
<p><button class="togglebutton" onclick="toggleTheme()">Switch theme</button></p>
<h5>Copyright © 2020 <a href="https://www.oldunreal.com" title="Click here to visit OldUnreal" target="_blank">www.oldunreal.com</a></h5>
</div>