{% extends "core/base.html" %} {% block title %}Send Invitation{% endblock %} {% block content %}

Send Invitation

You have {{ invites }} invites remaining.

{{ form.hidden_tag() }}
{{ form.email.label(class="form-label") }} {{ form.email(class="form-control", placeholder="recipient@example.com") }} {% for error in form.email.errors %}
{{ error }}
{% endfor %}
{% endblock %}