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.
@@ -1,4 +1,4 @@
1
- <!-- Version Version 0.2.30 - 2025-08-29T15:41:25.854Z - 2a10d12 -->
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="fa fa-key"></i> Add SSH Key
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="fa fa-upload"></i> Upload Key File
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">⚙️</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="fas fa-bars fa-fw"></i> Menu
121
+ <i data-icon="menu" class="icon-fw"></i> Menu
120
122
  <div id="dropupContent">
121
- <button id="clearLogBtn" class="menu-button"><i class="fas fa-trash-can fa-fw"></i> Clear Log</button>
122
- <button id="stopLogBtn" class="menu-button"><i class="fas fa-cog fa-spin fa-fw"></i> Stop Log</button>
123
- <button id="startLogBtn" class="menu-button"><i class="fas fa-clipboard fa-fw"></i> Start Log</button>
124
- <button id="downloadLogBtn" class="menu-button"><i class="fas fa-download fa-fw"></i> Download Log</button>
125
- <button id="replayCredentialsBtn" class="menu-button"><i class="fas fa-key fa-fw"></i> Credentials</button>
126
- <button id="reauthBtn" class="menu-button"><i class="fas fa-key fa-fw"></i> Switch User</button>
127
- <button id="terminalSettingsBtn" class="menu-button"><i class="fas fa-cog fa-fw"></i> Settings</button>
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>