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

Join Team

{% include "components/errors.html" %} {% with form = Forms.teams.TeamJoinForm() %}
{{ form.name.label }} {{ form.name(class="form-control") }}
{{ form.password.label }} {{ form.password(class="form-control") }}
{{ form.submit(class="btn btn-success float-right") }}
{{ form.nonce() }}
{% endwith %}
{% endblock %} {% block scripts %} {% endblock %}