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
2012-11-21 12:02:34 +01:00

36 lines
1.3 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>
<h1>Welcome to chromesoul</h1>
<ul id="tab-lst">
<li id="tab-config"><span>configuration</span></li>
</ul>
<div id="tab-body-wrapper">
<div id="configuration" class="tab-body">
Login: <input type="text" id="login" class="opt"><br>
Password (socks): <input type="password" id="pwd_socks" class="opt"><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>
<p>
Status: <span id="status_txt"></span><br>
<button id="reconnect">Reconnect</button>
</p>
<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/nsui.js"></script>
<script type="text/javascript" src="start.js"></script>
</body>
</html>