diff options
author | Vitaly Takmazov | 2017-08-29 12:40:33 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-08-29 12:40:33 +0300 |
commit | 6840b088c90273f490a397a3c7ff2d67a58549a0 (patch) | |
tree | a3ee2ab2311cdb5c1ad25be6a689b1117decfd63 /juick-www/src/main/webapp | |
parent | ec3527d0e533e4b7ea1f3fcd68f774a2ef029c3a (diff) |
www: hide newmessage form
Diffstat (limited to 'juick-www/src/main/webapp')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html b/juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html index 1333351b..e21002b8 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html +++ b/juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html @@ -1,10 +1,8 @@ -<form action="/post" method="post" enctype="multipart/form-data"> - <section id="newmessage"> - <textarea name="body" placeholder="{{ i18n("messages","postForm.newMessage") }}"></textarea> - <div> - <input type="text" class="img" name="img" placeholder="{{ i18n("messages","postForm.imageLink") }} ({{ i18n("messages","postForm.imageFormats") }})"/> {{ i18n("messages","postForm.or") }} <a href="#">{{ i18n("messages","postForm.upload") }}</a><br/> - <input type="text" class="tags" name="tags" placeholder="{{ i18n("messages","postForm.tags") }}"/><br/> - <input type="submit" class="subm" value="{{ i18n("messages","postForm.submit") }}"/> - </div> - </section> +<form id="newmessage" action="/post" method="post" enctype="multipart/form-data"> + <textarea name="body" placeholder="{{ i18n("messages","postForm.newMessage") }}"></textarea> + <div> + <input type="text" class="img" name="img" placeholder="{{ i18n("messages","postForm.imageLink") }} ({{ i18n("messages","postForm.imageFormats") }})"/> {{ i18n("messages","postForm.or") }} <a href="#">{{ i18n("messages","postForm.upload") }}</a><br/> + <input type="text" class="tags" name="tags" placeholder="{{ i18n("messages","postForm.tags") }}"/><br/> + <input type="submit" class="subm" value="{{ i18n("messages","postForm.submit") }}"/> + </div> </form>
\ No newline at end of file |