working quote submission (with limits for now)

- must have two lines
- can only submit timestamp in system timezone
This commit is contained in:
2026-04-05 22:11:43 +02:00
parent b0d86efae6
commit 26be03ba31
4 changed files with 102 additions and 16 deletions

View File

@@ -31,8 +31,10 @@ pub fn pages() -> Router {
.route("/persons", get(persons::page))
.route("/persons/create", post(persons::create))
.route("/logs", get(logs::page))
//
.route("/quotes", get(quotes::page))
.route("/quotes/add", get(quotes::add::page))
.route("/quotes/add-form", post(quotes::add::form))
}
pub fn base(title: &str, inner: Markup) -> Markup {