Files
qhttpengine/examples/chatserver/static/index.html
2017-04-04 17:34:23 -07:00

30 lines
817 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>QHttpEngine Chat</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="footer">
<textarea id="input" placeholder="Type here and press enter..."></textarea>
</div>
<div class="container">
<div class="message system">
Greetings! Welcome to the QHttpEngine chat demo. Please type a message using the entry box below.
</div>
<div class="messages">
</div>
</div>
<div class="spacer"></div>
<script src="js/jquery.min.js"></script>
<script src="js/chat.js"></script>
</body>
</html>