mirror of https://github.com/nealey/microchat.git
19 lines
484 B
HTML
19 lines
484 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" placeholder="Message here...">
|
||
|
<input type="submit" value="send">
|
||
|
</form>
|
||
|
<div id="chattoast"></div>
|
||
|
</body>
|
||
|
</html>
|