summaryrefslogtreecommitdiffstats
path: root/src/view
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-02-08 23:36:16 -0800
committerGravatar Tom Willemse2026-02-08 23:36:16 -0800
commit7c74afb2082e5ab2dfaef3d3c92da2049dbfa67f (patch)
tree974bffeee4a7e3ad001a9c83871d5660dea47db6 /src/view
parent87fa6807ea6a35c812b86c4702a150eb39012177 (diff)
downloadlezer-7c74afb2082e5ab2dfaef3d3c92da2049dbfa67f.tar.gz
lezer-7c74afb2082e5ab2dfaef3d3c92da2049dbfa67f.zip
Add simple form that doesn't do anything
Diffstat (limited to 'src/view')
-rw-r--r--src/view/main.phel7
1 files changed, 6 insertions, 1 deletions
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)