From 7c74afb2082e5ab2dfaef3d3c92da2049dbfa67f Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 8 Feb 2026 23:36:16 -0800 Subject: Add simple form that doesn't do anything --- src/view/main.phel | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/view/main.phel') diff --git a/src/view/main.phel b/src/view/main.phel index 419f1dc..277c4d3 100644 --- a/src/view/main.phel +++ b/src/view/main.phel @@ -22,7 +22,12 @@ (def- content [:div {:class "flex-center position-ref full-height"} - [:div {:class "content"} logo links]]) + [:form + [:label {:for "title"} "Title: "] + [:input {:type "text" :name "title"}] + [:br] + [:label {:for "authors"} "Author: "] + [:input {:type "text" :name "author"}]]]) (def index-html (html (doctype :html5) -- cgit v1.3-2-g0d8e