-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindow.html
71 lines (70 loc) · 1.82 KB
/
window.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
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf8">
<title>Speech to TCP</title>
<!-- <link rel="stylesheet" href="css/style.css"> -->
<style type="text/css">
input, select, textarea, label, button {
font-size: 150%;
}
</style>
<script type="text/javascript" src="start.js"></script>
</head>
<body>
<BASEFONT SIZE=10>
<CENTER><h1>Speech to TCP</h1></CENTER>
<form id="formId">
<div>
<label>Address: </label>
<input type="text" id="addressId" size="10" value="127.0.0.1">
   
<label>Port: </label>
<input type="text" id="portId" size="10">
</div>
<br>
<div>
<label>What kind of TCP server are you using?</label>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked> YARP server
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Other TCP server
</label>
</div>
<br>
<div>
<label>Connection request header</label>
 
<label>(insert newlines, including the one at the end, as \n)</label>
<br>
<input type="text" id="ConnHId" size="80" align="left" value="CONNECT anonymous\n">
</div>
<br>
<div>
<label>Message header</label>
 
<label>(insert newlines, including the one at the end, as \n)</label>
<br>
<input type="text" id="MsgHId" size="80" value="d\n">
</div>
<br>
<div>
<label>Close connection</label>
 
<label>(insert newlines, including the one at the end, as \n)</label>
<br>
<input type="text" id="CloseConnId" size="80" value="q\n">
</div>
<br>
</div>
<br>
<button id="startId">Start</button>
   
<button id="aboutId">About</button>
</form>
</body></html>