updated status page

This commit is contained in:
polarDefender 2024-05-31 16:24:03 -07:00
parent b368a77300
commit ced042a992
3 changed files with 136 additions and 17 deletions

13
static/js/status.js Normal file
View file

@ -0,0 +1,13 @@
$(() => {
$("#show-reset").click(() => {
$("#reset-content").text('Reset the administrator account if you lost access via the Dashboard.');
$("#reset-box").show();
});
$("#close-reset-box").click(() => {
$("#reset-box").hide();
});
$("#show-nostr").click(() => {
$("#reset-content").text("Changing the Nostr relay may cause some clients to lose connection. We'll make one last update to the old relay to tell clients about the new relay.");
$("#reset-box").show();
});
});