{% extends "base.html" %} {% from "_macros.html" import icon, mark, wordmark %} {% block title %}{% if first_run %}Set up {{ brand.name }}{% else %}Create an account{% endif %}{% endblock %} {% block body %}
{{ mark(cls="brand-mark", uid="auth") }}

{{ wordmark() }}

{% if first_run %}

{{ t("Nobody has claimed this instance yet. The first account becomes its administrator.") }}

{% else %}

{{ t("Create your account.") }}

{% endif %}
{% if error %} {% endif %}

{{ t("At least 8 characters.") }}

{% if not first_run %} {% endif %}
{% endblock %}