{% extends "base.html" %} {% block title %}Create Identity{% endblock %} {% block content %} {% if no_valid_domains %} {% if user.admin %}

There are no domains configured for this user account.

View domains
{% else %}

There are no domains available for this user account.

{% endif %} {% else %}

Create New Identity

You can have multiple identities - they are totally separate, and share nothing apart from your login details. They can also be shared among multiple users, so you can use them for company or project accounts.

{% csrf_token %}
Identity Details {% include "forms/_field.html" with field=form.username %} {% include "forms/_field.html" with field=form.domain %} {% include "forms/_field.html" with field=form.name %} {% include "forms/_field.html" with field=form.discoverable %}
{% endif %} {% endblock %}