webssh2_client 0.2.19 → 0.2.20
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.20 - 2024-08-18T12:58:07.614Z - 284a3fb -->
|
|
2
2
|
<!-- webssh2-client -->
|
|
3
3
|
<!-- /client/src/client.htm -->
|
|
4
4
|
<!DOCTYPE html>
|
|
@@ -23,7 +23,10 @@
|
|
|
23
23
|
<input type="password" id="passwordInput" placeholder="Password" required autocomplete="current-password">
|
|
24
24
|
<i id="capsLockIcon" class="fas fa-circle-up fa-fw"></i>
|
|
25
25
|
</div>
|
|
26
|
-
<
|
|
26
|
+
<div class="login-buttons">
|
|
27
|
+
<button type="submit" class="pure-button pure-button-primary">Connect</button>
|
|
28
|
+
<button type="button" id="loginSettingsBtn" class="pure-button"><i class="fas fa-cog"></i></button>
|
|
29
|
+
</div>
|
|
27
30
|
</fieldset>
|
|
28
31
|
</form>
|
|
29
32
|
</div>
|
|
@@ -35,6 +38,41 @@
|
|
|
35
38
|
<p id="errorMessage"></p>
|
|
36
39
|
</div>
|
|
37
40
|
</dialog>
|
|
41
|
+
<dialog id="terminalOptionsDialog" class="modal">
|
|
42
|
+
<div class="modal-content">
|
|
43
|
+
<h2>Terminal Options</h2>
|
|
44
|
+
<form id="terminalOptionsForm" class="pure-form pure-form-stacked">
|
|
45
|
+
<fieldset>
|
|
46
|
+
<label for="fontSize">Font Size</label>
|
|
47
|
+
<input type="number" id="fontSize" name="fontSize" min="8" max="72" required>
|
|
48
|
+
|
|
49
|
+
<label for="fontFamily">Font Family</label>
|
|
50
|
+
<input type="text" id="fontFamily" name="fontFamily" required>
|
|
51
|
+
|
|
52
|
+
<label for="cursorBlink">Cursor Blink</label>
|
|
53
|
+
<select id="cursorBlink" name="cursorBlink">
|
|
54
|
+
<option value="true">On</option>
|
|
55
|
+
<option value="false">Off</option>
|
|
56
|
+
</select>
|
|
57
|
+
|
|
58
|
+
<label for="scrollback">Scrollback</label>
|
|
59
|
+
<input type="number" id="scrollback" name="scrollback" min="1" max="200000" required>
|
|
60
|
+
|
|
61
|
+
<label for="tabStopWidth">Tab Stop Width</label>
|
|
62
|
+
<input type="number" id="tabStopWidth" name="tabStopWidth" min="1" max="100" required>
|
|
63
|
+
|
|
64
|
+
<label for="bellStyle">Bell Style</label>
|
|
65
|
+
<select id="bellStyle" name="bellStyle">
|
|
66
|
+
<option value="sound">Sound</option>
|
|
67
|
+
<option value="none">None</option>
|
|
68
|
+
</select>
|
|
69
|
+
|
|
70
|
+
<button type="submit" class="pure-button pure-button-primary">Save</button>
|
|
71
|
+
<button type="button" id="closeTerminalOptionsBtn" class="pure-button">Cancel</button>
|
|
72
|
+
</fieldset>
|
|
73
|
+
</form>
|
|
74
|
+
</div>
|
|
75
|
+
</dialog>
|
|
38
76
|
<div id="backdrop" class="backdrop"></div>
|
|
39
77
|
<button id="reconnectButton">Reconnect</button>
|
|
40
78
|
<div class="box">
|
|
@@ -50,6 +88,7 @@
|
|
|
50
88
|
<button id="downloadLogBtn" class="menu-button"><i class="fas fa-download fa-fw"></i> Download Log</button>
|
|
51
89
|
<button id="replayCredentialsBtn" class="menu-button"><i class="fas fa-key fa-fw"></i> Credentials</button>
|
|
52
90
|
<button id="reauthBtn" class="menu-button"><i class="fas fa-key fa-fw"></i> Switch User</button>
|
|
91
|
+
<button id="terminalOptionsBtn" class="menu-button"><i class="fas fa-cog fa-fw"></i> Settings</button>
|
|
53
92
|
</div>
|
|
54
93
|
</div>
|
|
55
94
|
<div id="footer"></div>
|