otwieranie w nowej karcie

This commit is contained in:
Mateusz779 2023-04-19 09:51:32 +02:00
parent 0eeef4e30e
commit 15c6db20b3

View File

@ -87,13 +87,12 @@
function ssh(ipvpn, username, password) {
const currentLocation = window.location;
console.log("dziala");
// budowanie nowego URL
const newUrl = currentLocation.protocol + '//' + currentLocation.hostname + ':' + {{ ssh_port }} + "/?hostname="+ipvpn+"&username="+username+"&password="+btoa(password);
console.log(newUrl);
// przekierowanie na nowy URL
window.location.replace(newUrl);
window.open(newUrl,"_blank");
}
</script>
</body>