aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html
blob: 452d1267a17b99735b852d40c9754ecf7ea138f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<form action="/post" method="post" enctype="multipart/form-data">
    <section id="newmessage">
        {% if readonly %}
        <p>Комментирование временно недоступно</p>
        {% else %}
        <textarea name="body" placeholder="Новое сообщение..."></textarea>
        <div>
            <input type="text" class="img" name="img" placeholder="Ссылка на изображение (JPG/PNG, до 10Мб)"/> или <a href="#">загрузить</a><br/>
            <input type="text" class="tags" name="tags" placeholder="Теги (через пробел)"/><br/>
            <input type="submit" class="subm" value="Отправить"/>
        </div>
        {% endif %}
    </section>
</form>