{% extends 'base.html' %} {% block body %}
branding logo

{{_('Invite Link')}}

{% if not request.user %}

{{_('Welcome to the %(org_name)s Single-Sign-On!', org_name=config.ORGANISATION_NAME)}}

{% endif %} {% if invite.roles and invite.allow_signup %}

{{_('With this link you can register a new user account with the following roles or add the roles to an existing account:')}}

{% elif invite.roles %}

{{_('With this link you can add the following roles to an existing account:')}}

{% elif invite.allow_signup %}

{{_('With this link you can register a new user account.')}}

{% endif %} {% if invite.roles %} {% endif %} {% if request.user %} {% if invite.roles %}
{{_('Logout and switch to a different account')}} {% endif %} {% if invite.allow_signup %} {{_('Logout to register a new account')}} {% endif %} {% else %} {% if invite.allow_signup %} {{_('Register a new account')}} {% endif %} {% if invite.roles %} {{_('Login and add the roles to your account')}} {% endif %} {% endif %}
{% endblock %}