summaryrefslogtreecommitdiff
path: root/src/ws/munia.html
blob: 77444306442ac5d1eefe2f85c8c406a93e836998 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
  <meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
	<meta content="utf-8" http-equiv="encoding"/>
	<meta http-equiv="Pragma" content="no-cache"/>
  <meta http-equiv="Expires" content="-1"/>
  <title>Munia</title>
  <link rel="stylesheet" type="text/css" href="munia.css" media="screen"/>
</head>
<body id="body">
<div id="wsnode_status">NodeProto not initialized</div>
<div id="input_div">
  NodeProto: <input type="text" id="input_node_data"
		    onkeyup="node_submit_KeyUpHandler(this, event)"
		    value=""/>
  <input type="button" value="submit" onclick="node_submit()"/><br/>
</div>
<div id="login_overlay" class="login_overlay">
	<div class="login_box">
		<input type="text" placeholder="Username" id="username"/>
		<input type="password" placeholder="Password" id="password"/>
		<input type="checkbox" id="remember"/>
		<label for="remember">Remember me</label>
		<input type="button" type="submit" value="Login" onclick="processLogin()"/>
	</div>
</div>
<div id="boards" class="boards"></div>

<pre class="log" id="log">Event information log
=====================
</pre>

<script type="text/javascript" charset="utf-8" src="proto.js"></script>
<script type="text/javascript" charset="utf-8" src="node.js"></script>
<script type="text/javascript" charset="utf-8" src="view.js"></script>
<script type="text/javascript" charset="utf-8" src="handler.js"></script>
<script type="text/javascript" charset="utf-8" src="marked.min.js"></script>

</body>
</html>