{% extends "base_min.html" %} {% block title %}{% if error %}{% trans "Form Error" %}{% else %}{% trans "Startpage" %}{% endif %} | {{ site_name }}{% endblock %} {% block h1 %}{% if error %}{% trans "Form Error" %}{% else %}{% blocktrans %}Welcome to {{ site_name }}{% endblocktrans %}{% endif %}{% endblock %} {% block form_class %}container col-md-8 col-md-offset-2 col-sm-8 col-sm-offset-2 col-lg-6 col-lg-offset-3 my-3 mt-md-5{% endblock %} {% block content %}

Create Account Invite

{% if token %}
Congratulations, a new invite has been created! Forward this link to someone you want to invite to this service.
{% trans "Your Invite-Link:" %} {{ token }}
{% trans "You can transfer this invite to a mobile device by scanning the QR code below with its camera." %}
{% else %}

{% blocktrans %}This form allows you to create an invite that you can send to someone else, so they can create a new account at this service. Be aware that you need to have the necessary rights to do so, otherwise this command will fail.{% endblocktrans %}

@{{ domain }}
{% if error.class == 'username' %}{{ error.text }}{% else %} {% blocktrans %}Please provide a valid username!{% endblocktrans %}{% endif %}
{% trans "Enter the username you use to log into this service." %}
{% if error.class == 'password' %}{{ error.text }}{% else %} {% blocktrans %}Please provide a password!{% endblocktrans %}{% endif %}
{% trans "Enter the corresponding password." %}
{% trans "Invite Options" %}
@{{ domain }}
{% if error.class == 'account_name' %}{{ error.text }}{% endif %}
{% trans "You can suggest a username for the account to be created with this invite." %}
{% trans "If checked once an account is created using this invite, it will automatically be added to your contact list." %}
{% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}