diff options
author | Mateja <mail@matejamaric.com> | 2021-05-02 22:11:05 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-05-02 22:11:05 +0200 |
commit | c4663dc58c4bbae758ac3766e6a801a3d7180b33 (patch) | |
tree | 91fb84516fa0534cd93efb5d52d2f8d63d9b0d00 /views/new-post.handlebars | |
parent | 7483bb5da6b22b94045a309d2ece2ed80ce48dc2 (diff) | |
download | node-playground-c4663dc58c4bbae758ac3766e6a801a3d7180b33.tar.gz node-playground-c4663dc58c4bbae758ac3766e6a801a3d7180b33.zip |
Setting up html for pages and form body parser.
Diffstat (limited to 'views/new-post.handlebars')
-rw-r--r-- | views/new-post.handlebars | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/views/new-post.handlebars b/views/new-post.handlebars index c280c9d..19984ee 100644 --- a/views/new-post.handlebars +++ b/views/new-post.handlebars @@ -1,3 +1,14 @@ <div class="container"> - <h1>{{ title }}</h1> + <h1 class="mt-2">{{ title }}</h1> + <form action="/new-post" method="post" accept-charset="utf-8"> + <div class="mb-3"> + <label for="post_title" class="form-label">Post title:</label> + <input name="title" type="text" class="form-control" id="post_title" required> + </div> + <div class="mb-3"> + <label for="post_text" class="form-label">Post text:</label> + <textarea name="text" class="form-control" id="post_text" rows="3" required></textarea> + </div> + <button type="submit" class="btn">Submit</button> + </form> </div> |