{% extends "organizations/base.html" %} {% load trans blocktrans from i18n %} {% load crispy from crispy_forms_tags %} {% load alter_field from ext_theme_tags %} {% block title %} {% blocktrans %}Create a new organization{% endblocktrans %} {% endblock title %} {% block content %}

{% trans "Join or create an organization" %}

{% comment %} This tab is active and empty on purpose. The idea here is to show nothing when the user arrives at this page. {% endcomment %}
{% blocktrans %} To join an existing organization, you will need to contact one of your organization's owners and request an invite. They should email you a link that you can use to join. {% endblocktrans %}
{% csrf_token %} {% alter_field form.name data_bind="valueInit: name, textInput: name" %} {% alter_field form.slug data_bind="valueInit:slug, text: slug, textInput: slug" %} {{ form|crispy }}
{% trans "Example URL for a project" %}

{% url 'support' as support_url %} {% blocktrans trimmed with support_url=support_url %} If you are not sure what you need or are having trouble getting started, contact us and we will help you with this process. {% endblocktrans %}

{% trans "30 day trial" %}
{% blocktrans %} No need to decide now. You can pick a plan that fits your organization after a 30 day trial. {% endblocktrans %}
{% endblock content %}