webssh2_client 0.2.17 → 0.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/public/client.htm
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!-- Version Version 0.2.
|
|
1
|
+
<!-- Version Version 0.2.19 - 2024-08-16T23:01:06.473Z - 77dbada -->
|
|
2
2
|
<!-- webssh2-client -->
|
|
3
3
|
<!-- /client/src/client.htm -->
|
|
4
4
|
<!DOCTYPE html>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
</script>
|
|
12
12
|
<script defer src="webssh2.bundle.js"></script><link href="webssh2.css" rel="stylesheet"></head>
|
|
13
13
|
<body>
|
|
14
|
-
<
|
|
14
|
+
<dialog id="loginDialog" class="modal">
|
|
15
15
|
<div class="modal-content">
|
|
16
16
|
<h2>WebSSH2 Login</h2>
|
|
17
17
|
<form id="loginForm" class="pure-form pure-form-stacked">
|
|
@@ -19,19 +19,23 @@
|
|
|
19
19
|
<input type="text" id="hostInput" placeholder="Hostname" required>
|
|
20
20
|
<input type="text" id="portInput" placeholder="Port" required>
|
|
21
21
|
<input type="text" id="usernameInput" placeholder="Username" required autocomplete="username">
|
|
22
|
-
<
|
|
22
|
+
<div class="password-wrapper">
|
|
23
|
+
<input type="password" id="passwordInput" placeholder="Password" required autocomplete="current-password">
|
|
24
|
+
<i id="capsLockIcon" class="fas fa-circle-up fa-fw"></i>
|
|
25
|
+
</div>
|
|
23
26
|
<button type="submit" class="pure-button pure-button-primary">Connect</button>
|
|
24
27
|
</fieldset>
|
|
25
28
|
</form>
|
|
26
29
|
</div>
|
|
27
|
-
</
|
|
28
|
-
<
|
|
30
|
+
</dialog>
|
|
31
|
+
<dialog id="errorDialog" class="modal" >
|
|
29
32
|
<div class="modal-content error-modal">
|
|
30
|
-
<
|
|
33
|
+
<button autofocus class="close-button">×</button>
|
|
31
34
|
<h2>Error</h2>
|
|
32
35
|
<p id="errorMessage"></p>
|
|
33
36
|
</div>
|
|
34
|
-
</
|
|
37
|
+
</dialog>
|
|
38
|
+
<div id="backdrop" class="backdrop"></div>
|
|
35
39
|
<button id="reconnectButton">Reconnect</button>
|
|
36
40
|
<div class="box">
|
|
37
41
|
<div id="header"></div>
|
|
@@ -40,10 +44,11 @@
|
|
|
40
44
|
<div class="dropup" id="menu">
|
|
41
45
|
<i class="fas fa-bars fa-fw"></i> Menu
|
|
42
46
|
<div id="dropupContent">
|
|
47
|
+
<button id="clearLogBtn" class="menu-button"><i class="fas fa-trash-can fa-fw"></i> Clear Log</button>
|
|
43
48
|
<button id="stopLogBtn" class="menu-button"><i class="fas fa-cog fa-spin fa-fw"></i> Stop Log</button>
|
|
44
|
-
<button id="
|
|
49
|
+
<button id="startLogBtn" class="menu-button"><i class="fas fa-clipboard fa-fw"></i> Start Log</button>
|
|
45
50
|
<button id="downloadLogBtn" class="menu-button"><i class="fas fa-download fa-fw"></i> Download Log</button>
|
|
46
|
-
<button id="
|
|
51
|
+
<button id="replayCredentialsBtn" class="menu-button"><i class="fas fa-key fa-fw"></i> Credentials</button>
|
|
47
52
|
<button id="reauthBtn" class="menu-button"><i class="fas fa-key fa-fw"></i> Switch User</button>
|
|
48
53
|
</div>
|
|
49
54
|
</div>
|