summaryrefslogtreecommitdiff
path: root/vnc_lite.html
diff options
context:
space:
mode:
Diffstat (limited to 'vnc_lite.html')
-rw-r--r--vnc_lite.html19
1 files changed, 2 insertions, 17 deletions
diff --git a/vnc_lite.html b/vnc_lite.html
index 4ba4932..71f28d9 100644
--- a/vnc_lite.html
+++ b/vnc_lite.html
@@ -106,17 +106,8 @@
// When this function is called, the server requires
// credentials to authenticate
function credentialsAreRequired(e) {
- // Let's create a password input
- const form = document.createElement('form');
- form.innerHTML = '<label></label>';
- form.innerHTML += '<input type=password size=10 id="password_input">';
- form.onsubmit = setPassword;
-
- // Bypass status() because it sets text content
- // which doesn't allow adding elements
- document.getElementById('noVNC_status').innerHTML = '';
- document.getElementById('noVNC_status').appendChild(form);
- document.getElementById('noVNC_status').querySelector('label').textContent = 'Password Required: ';
+ const password = prompt("Password Required:");
+ rfb.sendCredentials({ password: password });
}
// When this function is called we have received
@@ -125,12 +116,6 @@
desktopName = e.detail.name;
}
- // Send the credentials from the input element
- function setPassword() {
- rfb.sendCredentials({ password: document.getElementById('password_input').value });
- return false;
- }
-
// Since most operating systems will catch Ctrl+Alt+Del
// before they get a chance to be intercepted by the browser,
// we provide a way to emulate this key sequence.