{% extends "controlpanel/base.html" %} {% load lucide ui %} {% block heading %}Grant platform access{% endblock heading %} {% block panel %}
Platform admins can manage every club. They must set up two-factor authentication before they can sign in.
{% csrf_token %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% for field in form %}
{% if field.field.widget.input_type == "checkbox" %} {% else %} {{ field|daisy }} {% endif %} {% if field.help_text %}{{ field.help_text }}{% endif %} {% for error in field.errors %}{{ error }}{% endfor %}
{% endfor %}
{% lucide "arrow-left" size=16 %} Cancel
{% endblock panel %}