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

Create Team

{% include "components/errors.html" %} {% with form = Forms.teams.TeamRegisterForm() %} {% from "macros/forms.html" import render_extra_fields %}
{{ form.name.label }} {{ form.name(class="form-control") }}
{{ form.password.label }} {{ form.password(class="form-control") }}
{{ render_extra_fields(form.extra) }}

After creating your team, share the team name and password with your teammates so they can join your team.

{{ form.submit(class="btn btn-success float-right") }}
{{ form.nonce() }}
{% endwith %}
{% endblock %} {% block scripts %} {% endblock %}