{% 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.

{% elif error == "provider_unavailable" %}

This login provider is unavailable right now.

There has been a problem which means that it's not currently possible to log in with that provider.

If your account has a password, or is connected to other login providers, try those methods to log in.

This issue could be temporary, so please try again later. If the problem persists, please contact the server's administrator.

If you are the administrator of this server, please check the server logs for more information. This could be caused by a server misconfiguration or an issue with the provider.
{% include "sso_footer.html" without context %} {% 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 %}