POGOserver/index.html
Felix d5f69faed0 Update
- Add pokestops by dblclick on gmaps map
- Added heartbeat
- Added reconnect
2016-08-28 21:31:00 +02:00

48 lines
2.4 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width">
<meta content="origin-when-cross-origin" name="referrer" />
<title>POGOserver api</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/pure.min.css">
<script type="text/javascript" src="http://maps.google.com/maps/api/js?key=X"></script>
<script src="./gmaps.js"></script>
</head>
<body class="body">
<p class="ping area" id="server_ping" style="position: absolute;top: 0px;left: 10px; display:none;">Ping: 0ms</p>
<div class="area">
<p>POGOserver</p>
<p id="version" class="version"> </p>
<p><button class="btn color-1 view login_input" id="connection_status" href="#" style="color:yellow;">Connecting..</button></p>
</div>
<div id="login_area" class="area">
<p class="login_area">Login</p>
<p><input class="btn color-1 view input login_input" id="login_username" style="margin:-20px;" autocomplete="new-password" value="root"></input></p>
<p><input class="btn color-1 view input login_input" id="login_password" type="password" autocomplete="new-password"></input></p>
<p><button class="btn color-1 view login_input" id="login_attempt">Login</button></p>
</div>
<div id="world_manager" class="area" style="display:none;">
<p class="info" id="server_version">Server version: v0.1.0</p>
<p class="info" id="connected_players">Connected players: 0</p>
<p class="login_area" style="padding-bottom: 15px;">World Manager</p>
<p><button class="btn color-1 view cmd_label label">Spawn</button><input class="btn color-1 view input login_input with_label" id="spawn_user" placeholder="Username" autocomplete="new-password"></input><input class="btn color-1 view input login_input with_label" autocomplete="new-password" id="spawn_pkmn" placeholder="Pokemon"></input><button id="submit_spawn" class="btn color-1 view login_input with_label submit">Submit</button></p>
<br/>
</div>
<div class="area" id="fort_manager" style="padding-bottom:500px;opacity:0;">
<div id="map"></div>
</div>
<script language="javascript" src="ajax.js"></script>
<script language="javascript" src="main.js"></script>
</body>
</html>