Fixed control v pasting formating. Reorganized location of scripts. Visbile password and confirm password. Guest login. OpenSSH key authentication. Optional to remember password. Serach for host viewer.

This commit is contained in:
Karmaa
2025-03-16 00:46:20 -05:00
parent 346d833f3d
commit fd966b9954
17 changed files with 976 additions and 249 deletions

7
src/other/Utils.jsx Normal file
View File

@@ -0,0 +1,7 @@
export const Debounce = (func, wait) => {
let timeout;
return (...args) => {
clearTimeout(timeout);
timeout = setTimeout(() => func.apply(this, args), wait);
};
};