Files
appunti/server/notes/templates/notes/user_form.html

14 lines
266 B
HTML

{% extends "notes/base.html" %}
{% block title %}Profile{% endblock %}
{% block body %}
<h1>Profile</h1>
{% include "notes/messages.html" %}
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Save</button>
</form>
{% endblock %}