-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
129 lines (129 loc) · 4.57 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>屏幕共享和控制</title>
<link rel="stylesheet" href="noscr.css"/>
<link rel="icon" type="image/svg+xml" href="favicon.svg"/>
<link rel="icon" type="image/png" href="favicon.png"/>
</head>
<body>
<article>
<noscript>启用 JavaScript 体验完整功能</noscript>
<section id="main" class="page center">
<div>
<form class="local">
<fieldset>
<legend>本地</legend>
<table>
<tr>
<th>编号</th>
<td><input name="id" readonly required/></td>
<td><button type="submit">共享</button><button type="reset" disabled>停止</button></td>
</tr>
</table>
</fieldset>
</form>
<form class="remote">
<fieldset>
<legend>远程</legend>
<table>
<tr>
<th>编号</th>
<td><input name="id" autocomplete="off" placeholder="xxxx" required/></td>
<td><button type="submit">控制</button><button type="reset" disabled>停止</button></td>
</tr>
</table>
</fieldset>
</form>
</div>
</section>
<section id="screen" class="page"></section>
<section id="advanced" class="page center">
<div>
<form class="turn">
<fieldset>
<legend>穿透服务</legend>
<table>
<tr>
<th>地址</th>
<td><input name="addr" placeholder="turn:localhost:3478"/></td>
</tr>
<tr>
<th>用户</th>
<td><input name="username" placeholder="username"/></td>
</tr>
<tr>
<th>密码</th>
<td><input name="credential" placeholder="credential"/></td>
</tr>
</table>
</fieldset>
</form>
<form class="signal">
<fieldset>
<legend>信令服务</legend>
<table>
<tr>
<th>地址</th>
<td><input name="addr" placeholder="ws://localhost:8443/signal" required/></td>
</tr>
<tr>
<th>密令</th>
<td><input name="token" placeholder="token"/></td>
</tr>
</table>
</fieldset>
</form>
<form class="actor">
<fieldset>
<legend>遥控服务</legend>
<table>
<tr>
<th>地址</th>
<td><input name="addr" placeholder="wss://localhost:9242"/></td>
</tr>
<tr>
<th>密令</th>
<td><input name="token" placeholder="token"/></td>
</tr>
</table>
</fieldset>
<table>
<caption>遥控服务下载</caption>
<tr>
<th>Windows</th>
<td><a href="kmactor-windows-amd64.zip" target="_blank">Intel/AMD</a></td>
<td><a href="kmactor-windows-arm64.zip" target="_blank">ARM64</a></td>
</tr>
<tr>
<th>Apple</th>
<td colspan=2><a href="kmactor.app.zip" target="_blank">Intel/Apple Silicon</a></td>
</tr>
<tr>
<th>Linux</th>
<td><a href="kmactor-linux-amd64.zip" target="_blank">Intel/AMD</a></td>
<td><a href="kmactor-linux-arm64.zip" target="_blank">ARM64</a></td>
</tr>
</table>
</form>
</div>
</section>
<section id="logging"></section>
</article>
<footer>
<span>© 2023 <a href="https://github.com/whiler/noscreen" target="_blank">NoScreen</a></span>
<nav>
<ul>
<li><a href="terms.html" target="_blank">服务条款</a></li>
<li><a href="privacy.html" target="_blank">隐私声明</a></li>
<li><a href="http://status.noscr.v6.navy/" target="_blank">服务状态</a></li>
<li><a href="https://github.com/whiler/noscreen/issues/new" target="_blank">联系我们</a></li>
</ul>
</nav>
</footer>
<script defer src="noscr.js"></script>
</body>
</html>