15 lines
489 B
HTML
15 lines
489 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Test Server (HTTP[S]/WS[S])</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<h1>Test Server (HTTP[S]/WS[S])</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>Echo: <input id="echo" name="echo" placeholder="Text from server"></label></p>
|
||
|
</div>
|
||
|
</body>
|
||
|
<script src="wsecho_client.js"></script>
|
||
|
</html>
|