{% extends "_base.html" %} {% block title %}Authentication failed{% endblock %} {% block header %} {% if error == "unauthorised" %} {% endif %} {% endblock %} {% block body %}
{# If an error of unauthorised is returned it means we have actively rejected their login #} {% if error == "unauthorised" %}

You are not allowed to log in here.

{% else %}

There was an error

{{ error_description }}

If you are seeing this page after clicking a link sent to you via email, make sure you only click the confirmation link once, and that you open the validation link in the same client you're logging in from.

Try logging in again from your Matrix client and if the problem persists please contact the server's administrator.

Error code

{{ error }}

{% include "sso_footer.html" without context %} {% endif %}
{% endblock %}