{% extends "base.html" %} {% block content %}

{% trans %}Join Team{% endtrans %}

{% include "components/errors.html" %}

{% trans %}Welcome to{% endtrans %} {{ team.name }}!

{% trans %}Click the button below to join the team!{% endtrans %}
Or click here if you'd prefer to create your own team.

{% with form = Forms.teams.TeamInviteJoinForm() %}
{{ form.submit(class="btn btn-success w-100") }}
{{ form.nonce() }}
{% endwith %}
{% endblock %}