usersettings->change password

This commit is contained in:
2026-03-25 01:11:46 +01:00
parent 241e6988c9
commit 9393dc2f21
3 changed files with 27 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ pub fn pages() -> Router {
.route("/dashboard", get(dashboard::page))
.route("/user-settings", get(usersettings::page))
.route("/user-settings/handle", post(usersettings::change_handle))
.route("/user-settings/passwd", post(usersettings::change_password))
.route("/users", get(users::page))
.route("/users/{id}", get(users::profile::page))
.route("/users/create", get(users::create::page))