Files
flask-files/files/templates/categories/create.html
2019-03-09 02:44:17 -03:00

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