15 lines
508 B
HTML
15 lines
508 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Chat Server</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<h1>Chat Server:<span id="user"></span></h1>
|
||
|
<p><label>Message: <input id="message" name="message" placeholder="Enter a text"></label></p>
|
||
|
<p><button>Submit</button> <button>Close</button></p>
|
||
|
<p><label><span id="origin">Server</span>: <input id="echo" name="echo" placeholder="Text from server"></label></p>
|
||
|
</div>
|
||
|
</body>
|
||
|
<script src="wschat_client.js"></script>
|
||
|
</html>
|