diff --git a/index.html b/index.html
index a872b53..12fd9c4 100644
--- a/index.html
+++ b/index.html
@@ -154,7 +154,7 @@
Login
var copyText = document.querySelector(".ssh-command");
var tempInput = document.createElement("input");
tempInput.style.opacity = "0";
- tempInput.value = copyText.innerText;
+ tempInput.value = ' ' + copyText.innerText;
document.body.appendChild(tempInput);
tempInput.select();
document.execCommand("copy");