partirdezero/templates/users/create_post.html

13 lines
No EOL
429 B
HTML

{% extends 'layout.html' %}
{% block content %}
<section class="form-section">
<h2>Create Post</h2>
<form method="post" class="form">
{% csrf_token %}
<!-- Add form fields for post creation here -->
<div class="form-actions">
<button type="submit" class="btn btn-primary">Create Post</button>
</div>
</form>
</section>
{% endblock %}