13 lines
357 B
HTML
13 lines
357 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Categories{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>Create a new Category</h3>
|
|
<form method="post">
|
|
<label for="name">~/name</label>
|
|
<input type="text" class="u-full-width" name="name" id="name">
|
|
<input type="submit" class="button-primary" value="create">
|
|
</form>
|
|
{% endblock %}
|