partirdezero/templates/users/create_post.html
2025-09-12 11:07:53 +02:00

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 %}