{% extends 'base.html' %}

{% load static %}

{% block title %}
    <h1 class="text-center my-4">Create Article</h1>
{% endblock %}

{% block content %}
    <form action="/articles/add/" method="post">
        {% csrf_token %}
        {% include 'partial/form.html' with button_text='Create' %}
    </form>
{% endblock %}