Initial commit
This commit is contained in:
commit
3b1f094054
16
chat.html
Normal file
16
chat.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>WebSocket Chat exercise</title>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<textarea id="chatlog" readonly></textarea><br/>
|
||||||
|
<input id="msg" type="text" />
|
||||||
|
<button type="submit" id="sendButton">Send!</button>
|
||||||
|
<button type="submit" id="closeButton">End</button>
|
||||||
|
</body>
|
||||||
|
</html>
|
10364
jquery-3.3.1.js
vendored
Normal file
10364
jquery-3.3.1.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
26
tempbat.html
Normal file
26
tempbat.html
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Websocket Server EX</title>
|
||||||
|
<script src="jquery-3.3.1.js"></script>
|
||||||
|
<script>
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
#log
|
||||||
|
{
|
||||||
|
width: 200px;
|
||||||
|
height: 500px;
|
||||||
|
font: courier;
|
||||||
|
font-size: 8;
|
||||||
|
background:lightblue;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<textarea id="log" readonly></textarea><br/>
|
||||||
|
<button id="temp">Temp</button>
|
||||||
|
<button id="bat">Bat</button>
|
||||||
|
<button id="discon">Disconnect</button>
|
||||||
|
</body>
|
||||||
|
</html>
|
Reference in New Issue
Block a user