14 lines
364 B
HTML
14 lines
364 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Websocket Test</title>
|
|
<script src="/assets/js/websocket_example.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1 id="msg">Connection Closed</h1>
|
|
<p id="msgCount">0</p>
|
|
<button type="button" onclick="openConn()">Open</button>
|
|
<button type="button" onclick="closeConn()">Close</button>
|
|
</body>
|
|
</html>
|