10 lines
196 B
HTML
10 lines
196 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
<input type="text" name="title">
|
|
<textarea name="text"></textarea>
|
|
<input type="submit" value="Post">
|
|
</form>
|
|
{% endblock %}
|