12 lines
235 B
HTML
12 lines
235 B
HTML
{% extends "notes/base.html" %}
|
|
|
|
{% block title %}Post a Note{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Post a Note</h1>
|
|
<form method="post">{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Post!</button>
|
|
</form>
|
|
{% endblock %}
|