gamja/index.html

29 lines
685 B
HTML
Raw Normal View History

2020-04-24 13:01:02 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>IRC client</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<section id="sidebar">
<ul id="buffer-list">
<!--<li class="active"><a href="#">##soju-playground</a></li>-->
</ul>
</section>
<section id="log">
<!--<div class="logline">
<a href="#" class="timestamp">12:27:42</a>
&lt;<a href="#" class="nick">emersion</a>&gt;
Hi there!
</div>-->
</section>
<form id="composer">
<input type="text" id="composer-input" placeholder="Type a message">
</form>
<script src="assets/irc.js"></script>
<script src="assets/client.js"></script>
</body>
</html>