Initial commit

This commit is contained in:
Simon Ser
2020-04-24 19:01:02 +02:00
commit f7569a43b7
5 changed files with 1080 additions and 0 deletions

28
index.html Normal file
View File

@@ -0,0 +1,28 @@
<!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>