friendsmap/map/templates/map/change_profile.html

14 lines
408 B
HTML

{% extends 'map/base.html' %}
{% load crispy_forms_filters %}
{% block h1 %}Change your profile{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form|crispy }}
<button type="submit" class="btn btn-primary">Save</button>
<a href="{% url 'delete-profile' %}" class="btn btn-warning">Permanently delete your profile</a>
</form>
{% endblock %}