diff options
Diffstat (limited to 'src/view')
| -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) |
