10 lines
200 B
HTML
10 lines
200 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<form method="POST" action="{%url profiles.views.edit %}">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Submit"/>
|
|
</form>
|
|
{% endblock %}
|