friendsmap/map/templates/map/delete_profile.html
2019-03-03 18:13:49 +01:00

21 lines
706 B
HTML

{% extends 'map/base.html' %}
{% load crispy_forms_filters %}
{% block title %}Delete your location{% endblock %}
{% block h1 %}Delete your location{% endblock %}
{% block content %}
<div class="alert alert-danger">
<h4 class="alert-heading">Are you sure?</h4>
<div>
Are you sure you want to delete your profile ? You will permanently lose access to this service.<br>
This is immediate and can't be undone.
</div>
</div>
<form method="post">
{% csrf_token %}
<button type="submit" class="btn btn-danger">Yes I'm sure</button>
<a href="{% url 'map' %}" class="btn btn-secondary">No, cancel</a>
</form>
{% endblock %}