Files
eventify_backend/templates/accounts/user_confirm_delete.html

8 lines
334 B
HTML
Raw Normal View History

2025-11-27 11:53:46 +05:30
{% extends 'base.html' %}
{% block content %}
<h3>Delete User</h3>
<p>Are you sure you want to delete <strong>{{ object.username }}</strong>?</p>
<form method="post">{% csrf_token %}<button class="btn btn-danger">Yes, delete</button>
<a class="btn btn-secondary" href="{% url 'accounts:user_list' %}">Cancel</a></form>
{% endblock %}