feat(web-ui): add logout (#5121)

This commit is contained in:
David Lane
2026-05-14 23:23:02 -04:00
committed by GitHub
parent 33bdb011e2
commit 0523cebdfe
6 changed files with 111 additions and 10 deletions
+1
View File
@@ -1755,6 +1755,7 @@ namespace confighttp {
server.resource["^/clients/?$"]["GET"] = page_handler("clients.html");
server.resource["^/config/?$"]["GET"] = page_handler("config.html");
server.resource["^/featured/?$"]["GET"] = page_handler("featured.html");
server.resource["^/logout/?$"]["GET"] = page_handler("logout.html", false);
server.resource["^/password/?$"]["GET"] = page_handler("password.html");
server.resource["^/pin/?$"]["GET"] = page_handler("pin.html");
server.resource["^/troubleshooting/?$"]["GET"] = page_handler("troubleshooting.html");