-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (56 loc) · 1.67 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
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'" />
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'" />
<title>Togethr</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="src/web/css/bootstrap.min.css"></head>
<body>
<div id="entire">
<h1>Togethr App</h1>
<div>
<input type="checkbox" name="" id="server">
<span>Server</span>
</div>
<div>
<a href="" target="_blank" rel="noopener noreferrer" id="startstop">
Start server
</a>
</div>
<div>
<span>Server to connect</span>
<form action="">
<input type="text" name="" id="address">
<a href="" target="_blank" rel="noopener noreferrer" id="connect">Connect</a>
</form>
</div>
<div>
<input type="checkbox" name="" id="mousemove" /><span>Mouse Move</span>
</div>
<div>
<input type="checkbox" name="" id="mousedrag" /><span>Mouse Drag</span>
</div>
<div>
<input type="checkbox" name="" id="mousewheel" /><span>Mouse Wheel</span>
</div>
<div>
<input type="checkbox" name="" id="mouseclick" /><span>Mouse Click</span>
</div>
<div>
<input type="checkbox" name="" id="mouseup" /><span>Mouse Up</span>
</div>
<div>
<input type="checkbox" name="" id="mousedown" /><span>Mouse Down</span>
</div>
<div>
<input type="checkbox" name="" id="keyup" /><span>Key Up</span></li>
</div>
<div>
<input type="checkbox" name="" id="keydown" /><span>Key Down</span>
</div>
</div>
</body>
</html>