webii/chat.html

26 lines
649 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Irc It - Web Client</title>
<link rel="stylesheet" type="text/css" href="chat.css" />
<script src="chat.js"></script>
<script>get_output();</script>
</head>
<body>
<div id="list">
<ul>
<li> <a href="#SERVER" onClick="get_output();return true;"> #SERVER </a> </li>
<li> <a href="##jan6" onClick="get_output();return true;"> ##jan6 </a> </li>
</ul>
</div>
<div id="con">
<textarea id="out" readonly="readonly" rows="28" cols="80"></textarea>
<!--25 + 1 + 2 for status-->
<hr />
<input id="in" type="text" autofocus="autofocus" size="80" />
</div>
<script>get_output();</script>
</body>
</html>