haikal/templates/plans/billing_info_delete.html
Marwan Alwali aaf12c950b update
2025-01-26 13:33:57 +03:00

16 lines
423 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block body %}
<h1>Billing data</h1>
<form method="post" action="{% url 'billing_info_delete' %}">
{% csrf_token %}
{% trans "Are you sure to delete billing info?" %}
<p>
<button type="submit" class="btn btn-danger">
<span class="glyphicon glyphicon-trash"></span> Confirm delete
</button>
</form>
{% endblock %}