diff --git a/management/templates/system-backup.html b/management/templates/system-backup.html index ad534f41..2d221993 100644 --- a/management/templates/system-backup.html +++ b/management/templates/system-backup.html @@ -73,6 +73,9 @@ passwordless authentication from your mail-in-a-box server and your backup server. +
+ +
@@ -374,4 +377,14 @@ const url_split = url => { } }; +// hide Copy button if not in a modern clipboard-supporting environment +if (!(navigator && navigator.clipboard && navigator.clipboard.writeText)) { + document.getElementById('copy_pub_key_div').hidden = true; +} + +function copy_pub_key_to_clipboard() { + const ssh_pub_key = $("#ssh-pub-key").val(); + navigator.clipboard.writeText(ssh_pub_key); +} +