9 lines
228 B
HTML
9 lines
228 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<form method="post">
|
||
|
<textarea name="post_text" placeholder="What's up?" id="post_text" required></textarea>
|
||
|
<input type="submit" value="Poast!">
|
||
|
</form>
|
||
|
{% endblock %}
|