-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (54 loc) · 2.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>WebSockets Test Client</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<section>
<form class="border" onsubmit="connectToWS(event)">
<h5>Connect</h5>
<fieldset>
<label for="ws-url">URL:</label>
<input type="url" id="ws-url" name="ws-url">
<button type="submit">Connect</button>
</fieldset>
<fieldset>
<a class="btn" data-toggle="collapse" href="#collapseHeaders" role="button" aria-expanded="true" aria-controls="collapseExample">
Headers:
</a>
<div class="collapse show" id="collapseHeaders">
<button type="button" id="add-header" onclick="addHeader(event)">Add header</button>
<div id="headers-list"></div>
</div>
</fieldset>
</form>
</section>
<section>
<form class="border" onsubmit="sendMsg(event)">
<h5>Send message</h5>
<fieldset>
<textarea col="4" id="ws-msg" name="ws-msg"></textarea>
</fieldset>
<button type="submit">Send</button>
<span>[Ctrl + Enter]</span>
</form>
</section>
<section>
<form class="border" onsubmit="sendMsg(event)">
<h5>Message log:</h5>
<button type="button">Clear</button>
<fieldset>
<textarea col="4" id="ws-msg" name="ws-msg"></textarea>
</fieldset>
</form>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</body>
</html>