Skip to content

Commit

Permalink
Create ssh-passwords.js
Browse files Browse the repository at this point in the history
  • Loading branch information
4xx404 authored Jun 24, 2021
1 parent 01faf3f commit 28a5335
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions BrutoNova-UI/src/js/ssh-passwords.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
function searchSSH(){
document.getElementById('searchSSHBtn').style.display = 'none';
document.getElementById('searchSSH').style.display = 'block';
document.getElementById('sshoutput').style.display = 'block';
document.getElementById('sshTable').style.display = 'none';
document.getElementById('viewSSHDBBtn').style.display = 'block';
document.getElementById('sshinput').focus();
}

function viewSSHDB(){
document.getElementById('searchSSHBtn').style.display = 'block';
document.getElementById('searchSSH').style.display = 'none';
document.getElementById('sshoutput').style.display = 'none';
document.getElementById('sshTable').style.display = 'block';
document.getElementById('viewSSHDBBtn').style.display = 'none';
}

0 comments on commit 28a5335

Please sign in to comment.