11 lines
No EOL
309 B
HTML
11 lines
No EOL
309 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<section>
|
|
<h2>Create Post</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<!-- Add form fields for post creation here -->
|
|
<button type="submit">Create Post</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %} |