-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
26 lines (26 loc) · 1.18 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
<html>
<head>
<title>Eos Websocket client</title>
<link href='http://fonts.googleapis.com/css?family=Roboto&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700&subset=cyrillic-ext,cyrillic,latin' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/themes/holo.css">
<link rel="stylesheet" href="css/terminal.css">
<script
data-main="js/app.js"
src="http://cdn.jsdelivr.net/requirejs/2.1.14/require.min.js"></script>
</head>
<body>
<div id="connectWindow">
<input type="text" id="dsn" placeholder="DSN" />
<input type="text" id="tag" placeholder="Tag filter" />
<input type="text" id="realm" placeholder="Realm name" />
<input type="password" id="secret" placeholder="Realm secret" />
<hr />
<span class="logo">EOS websocket client</span>
<input type="button" id="connect" />
<input type="button" id="clearButton"/>
</div>
<div id="tagWindow"></div>
<div id="logWindow"></div>
</body>
</html>