From 92a83a20794267570cca9948544dee478dd1eab2 Mon Sep 17 00:00:00 2001 From: daragh Date: Sun, 18 Feb 2024 16:47:22 +0000 Subject: [PATCH] fmt , made default textarea bigger --- src/modify_ssh.html | 8 ++++++++ src/modify_ssh.js | 11 ++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/modify_ssh.html b/src/modify_ssh.html index 3612ef6..2bfba53 100644 --- a/src/modify_ssh.html +++ b/src/modify_ssh.html @@ -12,6 +12,7 @@ margin-left: auto; margin-right: auto; } + .center, .center th, .center td { border: 1px solid white; } @@ -28,6 +29,12 @@ display: none; } + textarea { + width: 650px; + height: 57px; + + } +
@@ -66,6 +73,7 @@ placeholder="ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINS2UR/o+nK8lNHHTj5I84ZAAp6P+ZhXqhedMfx0KHE4 My skynet key!"> +
diff --git a/src/modify_ssh.js b/src/modify_ssh.js index 94dd808..df07a5d 100644 --- a/src/modify_ssh.js +++ b/src/modify_ssh.js @@ -1,13 +1,14 @@ -function update_table(keys){ +function update_table(keys) { let table = document.getElementById("key_table") //removing old table - while(table.rows.length > 0){ + while (table.rows.length > 0) { table.deleteRow(0); } keys.forEach(key => { add_to_table(key); }) } + async function get_keys() { let username = document.getElementById("user").value; let password = document.getElementById("pass").value; @@ -68,7 +69,7 @@ async function add_key() { } } -async function delete_key(row_idx,key) { +async function delete_key(row_idx, key) { let username = document.getElementById("user").value; let password = document.getElementById("pass").value; @@ -102,7 +103,7 @@ async function delete_key(row_idx,key) { function add_to_table(key) { let table = document.getElementById("key_table"); let row = table.insertRow(); - row.setAttribute("ssh_key",key); + row.setAttribute("ssh_key", key); let cell_name = row.insertCell(0); let cell_key = row.insertCell(1); @@ -115,7 +116,7 @@ function add_to_table(key) { for (let i = 2; i < key_split.length; i++) { comment += " " + key_split[i]; } - if(key_split.length === 2) { + if (key_split.length === 2) { comment = "No comment"; } cell_name.textContent = comment;