haikal/templates/plans/billing_info_delete.html
2025-09-24 11:07:31 +03:00

16 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 %}