-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fuck you</title>
</head>
<body>
<div style="float:left; margin:20px">
<div>
<div>channel:</div>
<input id="channelIn" type="text" name="channel" value="123">
</div>
<div>
<div>password:</div>
<input id="passwordIn" type="password" name="password" value="">
</div>
<div>
<div>text:</div>
<textarea id="textIn" name="text"></textarea>
</div>
<div>
<button type="button" name="button" onclick="send(this)">send</button>
</div>
</div>
<div style="float:left; margin:20px">
<div>
<div>channel:</div>
<input id="channelOut" type="text" name="channel" value="123">
</div>
<div>
<div>password:</div>
<input id="passwordOut" type="password" name="password" value="">
</div>
<div>
<div>text:</div>
<textarea id="textOut" name="text" readonly></textarea>
</div>
<div>
<button type="button" name="button" onclick="recieve(this)">recieve</button>
</div>
</div>
<script src="public.js"></script>
</body>
</html>