summaryrefslogtreecommitdiff
path: root/vnc.html
diff options
context:
space:
mode:
authorChris Koying Browet <cbro@semperpax.com>2019-12-05 15:34:18 +0100
committerSamuel Mannehed <samuel@cendio.se>2019-12-05 15:46:24 +0100
commit5b453ed4a8593d68cc4e535ef6b5614c59ff4a4d (patch)
tree969f6ed5b3624fd2aed610f89d0bca9214ec8937 /vnc.html
parentb39caa7469ee47cafc26087b9a50cbe40bbe44ae (diff)
downloadnovnc-5b453ed4a8593d68cc4e535ef6b5614c59ff4a4d.tar.gz
Expand password dialog to work for usernames too
Some VNC authentication schemes use usernames, our UI should support these.
Diffstat (limited to 'vnc.html')
-rw-r--r--vnc.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/vnc.html b/vnc.html
index c3fef0c..52fb1f3 100644
--- a/vnc.html
+++ b/vnc.html
@@ -285,14 +285,18 @@
<!-- Password Dialog -->
<div class="noVNC_center noVNC_connect_layer">
- <div id="noVNC_password_dlg" class="noVNC_panel"><form>
+ <div id="noVNC_credentials_dlg" class="noVNC_panel"><form>
<ul>
- <li>
+ <li id="noVNC_username_block">
+ <label>Username:</label>
+ <input id="noVNC_username_input">
+ </li>
+ <li id="noVNC_password_block">
<label>Password:</label>
<input id="noVNC_password_input" type="password">
</li>
<li>
- <input id="noVNC_password_button" type="submit" value="Send Password" class="noVNC_submit">
+ <input id="noVNC_credentials_button" type="submit" value="Send Credentials" class="noVNC_submit">
</li>
</ul>
</form></div>