ux: More style (bulma / fork-awesome) for logged in users

This commit is contained in:
selfhoster selfhoster 2026-09-21 21:17:44 +02:00
commit a60434e662
14 changed files with 275 additions and 62 deletions

View file

@ -104,6 +104,7 @@ pub async fn http_listen(listener: Listener, db: Database) {
.route("/login", post(login::post_login))
.route("/logout", get(logout::logout))
.route("/domain/{domain}", get(domain::get_domain))
.route("/domain", get(domain::list_domains))
.route("/domain", post(domain::create_domain))
.route("/user", post(user::create_user))
.with_state(HttpState::new(db));