onboard/accounts/templates/accounts/profile_form.html
2021-07-21 20:58:18 -06:00

11 lines
249 B
HTML
Executable File

<section>
<h2>Settings</h2>
<form action="{% url 'profile-update' user.profile.pk %}" method="POST">
{% csrf_token %}
{{form.as_p}}
<p>
<input type="submit" value="Save changes" class="action-button">
</p>
</form>
</section>