This repository has been archived on 2023-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
chromesoul/chromesoul.html

44 lines
1.7 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Chromesoul</title>
<link rel="stylesheet" type="text/css" media="all" href="chromesoul.css">
</head>
<body>
<p id="user-status">
Status: <span id="status_txt"></span><br>
<button id="reconnect">Reconnect</button>
</p>
<div id="settings-btn"><img src="img/settings.png" atl="settings"></div>
<div id="contact-lst-wrapper">
<input type="text" id="add-contact" placeholder="New contact">
<ul id="contact-lst"></ul>
</div>
<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>
</div>
</div>
<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>
<script type="text/javascript" src="lib/tab.nsui.js"></script>
<script type="text/javascript" src="lib/contacts.nsui.js"></script>
<script type="text/javascript" src="lib/nsui.js"></script>
<script type="text/javascript" src="start.js"></script>
</body>
</html>