diff options
| author | 2026-02-08 23:36:16 -0800 | |
|---|---|---|
| committer | 2026-02-08 23:36:16 -0800 | |
| commit | 7c74afb2082e5ab2dfaef3d3c92da2049dbfa67f (patch) | |
| tree | 974bffeee4a7e3ad001a9c83871d5660dea47db6 /src | |
| parent | 87fa6807ea6a35c812b86c4702a150eb39012177 (diff) | |
| download | lezer-7c74afb2082e5ab2dfaef3d3c92da2049dbfa67f.tar.gz lezer-7c74afb2082e5ab2dfaef3d3c92da2049dbfa67f.zip | |
Add simple form that doesn't do anything
Diffstat (limited to 'src')
| -rw-r--r-- | src/view/main.phel | 7 |
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) |
