webssh2_client 0.2.31-alpha.2 → 0.2.31-alpha.3
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.31-alpha.3 - 2025-09-04T11:00:55.601Z - 3b608bc -->
|
|
2
2
|
<!-- webssh2-client -->
|
|
3
3
|
<!-- /client/src/client.htm -->
|
|
4
4
|
<!DOCTYPE html>
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
<!-- Private key toggle button -->
|
|
31
31
|
<div class="private-key-toggle">
|
|
32
32
|
<button type="button" id="privateKeyToggle" class="pure-button">
|
|
33
|
-
<i class="
|
|
33
|
+
<i data-icon="key" class="icon-fw"></i> Add SSH Key
|
|
34
34
|
</button>
|
|
35
35
|
</div>
|
|
36
36
|
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
<div class="file-upload">
|
|
43
43
|
<input type="file" id="privateKeyFile" accept=".pem,.key">
|
|
44
44
|
<label for="privateKeyFile" class="pure-button">
|
|
45
|
-
<i class="
|
|
45
|
+
<i data-icon="upload" class="icon-fw"></i> Upload Key File
|
|
46
46
|
</label>
|
|
47
47
|
</div>
|
|
48
48
|
<input type="password" id="passphraseInput" name="passphrase"
|
|
@@ -52,7 +52,9 @@
|
|
|
52
52
|
|
|
53
53
|
<div class="login-buttons">
|
|
54
54
|
<button type="submit" class="pure-button pure-button-primary">Connect</button>
|
|
55
|
-
<button type="button" id="loginSettingsBtn" class="pure-button"
|
|
55
|
+
<button type="button" id="loginSettingsBtn" class="pure-button" aria-label="Settings" title="Settings">
|
|
56
|
+
<i data-icon="settings"></i>
|
|
57
|
+
</button>
|
|
56
58
|
</div>
|
|
57
59
|
</form>
|
|
58
60
|
</div>
|
|
@@ -116,15 +118,15 @@
|
|
|
116
118
|
<div id="terminalContainer" class="terminal"></div>
|
|
117
119
|
<div id="bottomdiv">
|
|
118
120
|
<div class="dropup" id="menu">
|
|
119
|
-
<i class="
|
|
121
|
+
<i data-icon="menu" class="icon-fw"></i> Menu
|
|
120
122
|
<div id="dropupContent">
|
|
121
|
-
<button id="clearLogBtn" class="menu-button"><i
|
|
122
|
-
<button id="stopLogBtn" class="menu-button"><i class="
|
|
123
|
-
<button id="startLogBtn" class="menu-button"><i
|
|
124
|
-
<button id="downloadLogBtn" class="menu-button"><i
|
|
125
|
-
<button id="replayCredentialsBtn" class="menu-button"><i
|
|
126
|
-
<button id="reauthBtn" class="menu-button"><i
|
|
127
|
-
<button id="terminalSettingsBtn" class="menu-button"><i class="
|
|
123
|
+
<button id="clearLogBtn" class="menu-button"><i data-icon="trash-can" class="icon-fw"></i> Clear Log</button>
|
|
124
|
+
<button id="stopLogBtn" class="menu-button"><i data-icon="settings" class="icon-spin icon-fw"></i> Stop Log</button>
|
|
125
|
+
<button id="startLogBtn" class="menu-button"><i data-icon="clipboard" class="icon-fw"></i> Start Log</button>
|
|
126
|
+
<button id="downloadLogBtn" class="menu-button"><i data-icon="download" class="icon-fw"></i> Download Log</button>
|
|
127
|
+
<button id="replayCredentialsBtn" class="menu-button"><i data-icon="key" class="icon-fw"></i> Credentials</button>
|
|
128
|
+
<button id="reauthBtn" class="menu-button"><i data-icon="key" class="icon-fw"></i> Switch User</button>
|
|
129
|
+
<button id="terminalSettingsBtn" class="menu-button"><i data-icon="settings" class="icon-fw"></i> Settings</button>
|
|
128
130
|
</div>
|
|
129
131
|
</div>
|
|
130
132
|
<div id="footer"></div>
|
|
@@ -132,4 +134,4 @@
|
|
|
132
134
|
</div>
|
|
133
135
|
</div>
|
|
134
136
|
</body>
|
|
135
|
-
</html>
|
|
137
|
+
</html>
|