spongy/index.html

45 lines
687 B
HTML
Raw Normal View History

2014-07-14 19:30:47 -06:00
<!DOCTYPE html>
<html>
<head>
<title>LOL</title>
2014-07-23 21:15:04 -06:00
<script type="application/javascript" src="irc.js">
2014-07-14 19:30:47 -06:00
</script>
<style type="text/css">
#a {
2014-07-14 19:30:47 -06:00
max-height: 20em;
overflow-y: scroll;
overflow-x: hidden;
2014-07-23 21:15:04 -06:00
}
#a p {
margin: 0em 0em 0em 4em;
text-indent: -4em;
2014-07-14 19:30:47 -06:00
}
.timestamp {
color: silver;
}
.forum {
color: darkblue;
}
.sender {
color: green;
}
.raw {
color: purple;
}
#command {
width: 75%;
2014-07-14 19:30:47 -06:00
}
</style>
</head>
<body>
<div id="a"></div>
<form id="command">
<input type="hidden" name="auth" value="" id="authtok">
2014-07-14 19:30:47 -06:00
<input type="hidden" name="type" value="command">
<input name="text" autofocus>
<input type="Submit" value="Send">
</form>
</body>
</html>