-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<title>Join And Play COOP !</title>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="css.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
function GetClock() {
var d = new Date();
document.getElementById('time').innerHTML = d.toString().substring(16, 25);
}
$(document).ready(function () {
GetClock();
setInterval(GetClock, 100);
})
</script>
<meta name='viewport' content='width=device-width, initial-scale=1'>
</head>
<body>
<center>
<div id="time_wrapper">
Time UTC +1:
<div id="time"></div>
</div>
</center>
<div class="menu">
<div id="menu_header">Join And Play COOP !</div>
<a href="https://github.com/joinandplaycoop/Factorio-Scenarios"><div class="menu_button">Scenario</div></a>
<a href="https://saves.joinandplaycoop.com"><div class="menu_button">Saves</div></a>
<a href="https://discord.joinandplaycoop.com"><div class="menu_button">Discord</div></a>
<!--<a href="https://stats.joinandplaycoop.com"><div class="menu_button">Stats - Player List</div></a>-->
<a href="https://panel.joinandplaycoop.com"><div class="menu_button">Management panel</div></a>
<div id="menu_footer"></div>
</div>
<div align="center" style="padding:20px;">
<iframe class="discord" src="https://discordapp.com/widget?id=420865611279630336&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0"></iframe>
</div>
<div id="footer" color="white">Proudly hosted and sponsored by <a href="https://polisystems.ch/en/factorio-hosting">Poli Systems GmbH</a></div>
</body>
</html>