19 lines
365 B
HTML
19 lines
365 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>PixelNode</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<form action="">
|
||
|
<input id="m" autocomplete="off"><button>Send</button>
|
||
|
</form>
|
||
|
|
||
|
<script src="socket.io.js"></script>
|
||
|
<script src="jquery.js"></script>
|
||
|
<script src="send.js"></script>
|
||
|
</body>
|
||
|
</html>
|