-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 866 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 866 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Astron Control Panel</title>
<link rel="stylesheet" type="text/css" href="css/global.css"/>
<script src="js/serializeToken.js"></script>
<script src="js/global.js"></script>
<script src="js/air.js"></script>
<script src="js/Datagram.js"></script>
<script src="js/dcparser.js"></script>
<script src="js/gui.js"></script>
</head>
<body>
<h1>Astron Control Panel</h1> <br/>
<div id="auth">
<span id="authstatus" style="color: orange">Waiting for auth...</span> <br/>
Host: <input type="text" id="host" value="127.0.0.1" /></br>
Port: <input type="text" id="port" value="8198" /></br>
Username: <input type="text" id="username" /></br>
Password: <input type="password" id="password" /></br>
<button onclick="authenticate()" id="loginBtn">Login</button> <br/>
</div>
<div id="gui">
</div>
</body>
</html>