2012-11-07 10:53:48 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Chromesoul</title>
|
2012-11-14 17:47:12 +01:00
|
|
|
<link rel="stylesheet" type="text/css" media="all" href="chromesoul.css">
|
2012-11-07 10:53:48 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2013-01-12 13:34:16 +01:00
|
|
|
<p id="user-status">
|
2012-11-14 17:47:12 +01:00
|
|
|
Status: <span id="status_txt"></span><br>
|
|
|
|
<button id="reconnect">Reconnect</button>
|
|
|
|
</p>
|
2012-11-07 10:53:48 +01:00
|
|
|
|
2013-01-12 13:34:16 +01:00
|
|
|
<div id="settings-btn"><img src="img/settings.png" atl="settings"></div>
|
|
|
|
|
|
|
|
<div id="contact-lst-wrapper">
|
2012-11-26 15:32:01 +01:00
|
|
|
<input type="text" id="add-contact" placeholder="New contact">
|
|
|
|
<ul id="contact-lst"></ul>
|
|
|
|
</div>
|
|
|
|
|
2013-01-12 13:34:16 +01:00
|
|
|
<div id="main-ctn">
|
|
|
|
<p id="pre-conf-pannel">You haven't configured chromesoul yet, you should go to the configuration pannel.</p>
|
|
|
|
<div id="config-pannel">
|
|
|
|
Login: <input type="text" id="login" class="opt" value=""><br>
|
|
|
|
Password (socks): <input type="password" id="pwd_socks" class="opt" value=""><br>
|
|
|
|
Enable messages: <input type="checkbox" id="enable_msg" class="opt" checked="checked"><br>
|
|
|
|
<button id="save">Save</button> <span id="status"></span>
|
|
|
|
</div>
|
|
|
|
<div id="chat-pannel">
|
|
|
|
<ul id="tab-lst"></ul>
|
|
|
|
<div id="tab-body-wrapper"></div>
|
2012-11-26 15:32:01 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2012-11-07 10:53:48 +01:00
|
|
|
<script type="text/javascript" src="third-party/md5-min.js"></script>
|
|
|
|
<script type="text/javascript" src="third-party/ab-str.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/ns_client.js"></script>
|
|
|
|
<script type="text/javascript" src="lib/options.js"></script>
|
2012-11-21 12:02:34 +01:00
|
|
|
<script type="text/javascript" src="lib/tab.nsui.js"></script>
|
2012-11-26 17:09:31 +01:00
|
|
|
<script type="text/javascript" src="lib/contacts.nsui.js"></script>
|
2012-11-14 17:47:12 +01:00
|
|
|
<script type="text/javascript" src="lib/nsui.js"></script>
|
2012-11-07 10:53:48 +01:00
|
|
|
<script type="text/javascript" src="start.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|