mirror of https://github.com/nealey/microchat.git
20 lines
504 B
HTML
20 lines
504 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>μChat</title>
|
|
<script src="microchat.js" async></script>
|
|
<link rel="stylesheet" href="microchat.css">
|
|
</head>
|
|
<body>
|
|
<h1>μChat</h1>
|
|
<div id="chatlog"></div>
|
|
<form>
|
|
<input name="forum" value="" type="hidden">
|
|
<input name="who" placeholder="name">
|
|
<input name="text" autocomplete="off" placeholder="Message here...">
|
|
<input type="submit" value="send">
|
|
</form>
|
|
<div id="chattoast"></div>
|
|
</body>
|
|
</html>
|