diff options
author | Vitaly Takmazov | 2018-01-22 13:49:14 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-01-22 13:49:14 +0300 |
commit | 2142e114f33b9537e15799281212fec1817a999a (patch) | |
tree | 964de02505c8eda17b541a7b2db43a1e736f63dc /juick-www/src/main/webapp/WEB-INF/views | |
parent | 8ca47f9eb169ad2e1d6c956616620a27cf55d069 (diff) |
www: post form fixes
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/views')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/post.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/post.html b/juick-www/src/main/webapp/WEB-INF/views/post.html index ac179e92..e961329c 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/post.html +++ b/juick-www/src/main/webapp/WEB-INF/views/post.html @@ -1,6 +1,7 @@ {% extends "layouts/content" %} {% import "views/macros/tags" %} {% block content %} +<article> <form action="/post2" method="post" id="postmsg" enctype="multipart/form-data"> <p style="text-align: left"> <b>Фото:</b> <span id="attachmentfile"> @@ -12,6 +13,7 @@ <input type="submit" class="subm" value=" {{ i18n("messages","postForm.submit") }} "/> </p> </form> +</article> <p style="text-align: left"><b>Теги:</b></p> {{ tags(visitor.name, tags) }} {% endblock %} |