user profiles

This commit is contained in:
2026-03-10 21:21:23 +01:00
parent 9e678c5586
commit f753fcf5b4
6 changed files with 274 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ pub fn pages() -> Router {
.route("/login", get(login::page))
.route("/dashboard", get(dashboard::page))
.route("/users", get(users::page))
.route("/users/{id}", get(users::profile::page))
}
pub fn base(title: &str, inner: Markup) -> Markup {