forked from natefox/aws-ssh-rdp-links
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.html
38 lines (34 loc) · 974 Bytes
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>AWS SSH RDP Options</title>
<link rel="stylesheet" href="options.css">
<script src="options.js"></script>
</head>
<body>
<div>
Default SSH Username<br>
<input type="text" id="ssh_user" value="ec2-user" spellcheck="false">
</div>
<div>
<input type="checkbox" id="always_override_user">
<label for="always_override_user">Always use this SSH username</label>
</div>
<div>
RDP User<br>
<input type="text" id="rdp_user" value="Administrator" spellcheck="false">
</div>
<div>
RDP Link Style<br>
<select id="rdp_style">
<option value="MS">Microsoft</option>
<option value="CoRD">CoRD</option>
</select>
</div>
<div>
<a target="_blank" href="https://github.com/natefox/aws-ssh-rdp-links">Website</a> |
<a target="_blank" href="https://github.com/natefox/aws-ssh-rdp-links/issues">Report a bug?</a> |
Ver: <span id="version"></span>
</div>
</body>
</html>