haikal/templates/plans/billing_info_delete.html
2025-06-12 21:01:13 +03:00

18 lines
540 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block content %}
<div class="row mb-3">
<div class="col-sm-6">
<h3>{{ _("Billing data")}}</h3>
<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-sm btn-phoenix-danger">{{ _("Confirm")}}</button>
</form>
</div>
</div>
{% endblock %}