let send_button = document.getElementById("send");
let paragraph = document.createElement("p");
paragraph.id = "status_display";
let status_text = document.createTextNode("Сетевая ошибка. Возможно, вам стоит проверить своё интернет-соединение или подождать, а затем попробовать поменять пароль снова.");
paragraph.append(status_text);
send_button.after(paragraph);
}
function append_to_input(input, offset, text) {
input.set(text, offset);
input[offset + text.length] = 10; // '\n'
return offset + text.length + 1;
}
function send_input() {
let old_paragraph = document.getElementById("status_display");
if(old_paragraph != null) {
old_paragraph.remove();
}
let text_encoder = new TextEncoder();
let username = text_encoder.encode(document.getElementById("username").value);
let old_password = text_encoder.encode(document.getElementById("old_password").value);
let password = text_encoder.encode(document.getElementById("password").value);
let password_repeat = text_encoder.encode(document.getElementById("password_repeat").value);
let input = new Uint8Array(username.length + old_password.length + password.length + password_repeat.length + 4);