Files
eventify_backend/templates/accounts/user_form.html
Vivek P Prakash aa40080012 Initials
2025-11-27 11:53:46 +05:30

10 lines
310 B
HTML

{% extends 'base.html' %}
{% block content %}
<h3>{% if object %}Edit{% else %}Add{% endif %} User</h3>
<form method="post">{% csrf_token %}
{{ form.as_p }}
<button class="btn btn-primary">Save</button>
<a class="btn btn-secondary" href="{% url 'accounts:user_list' %}">Cancel</a>
</form>
{% endblock %}