coriplus/templates/create.html

13 lines
442 B
HTML
Raw Normal View History

2019-05-01 15:33:28 +02:00
{% extends "base.html" %}
{% block body %}
<h2>Create</h2>
2019-05-02 15:47:23 +02:00
<form action="{{ url_for('create') }}" method="POST" enctype="multipart/form-data">
2019-05-01 15:33:28 +02:00
<dl>
<dt>Message:</dt>
<dd><textarea name="text" placeholder="What's happening?"></textarea></dd>
2019-05-02 15:47:23 +02:00
<dd id="fileInputContainer"><a href="javascript:attachFileInput();">Add a file...</a>
2019-05-01 15:33:28 +02:00
<dd><input type="submit" value="Create" /></dd>
</dl>
</form>
{% endblock %}