{% extends "base.html" %} {% block title %}Authorization Error - Authly{% endblock %} {% block content %}
The application you're trying to authorize is not recognized or has been disabled.
{% elif error_code == 'invalid_request' %}The authorization request is missing required parameters or contains invalid values.
{% elif error_code == 'unauthorized_client' %}This application is not authorized to use this authorization flow.
{% elif error_code == 'unsupported_response_type' %}The authorization server does not support this response type.
{% elif error_code == 'invalid_scope' %}The requested scope is invalid, unknown, or malformed.
{% elif error_code == 'server_error' %}The authorization server encountered an unexpected condition that prevented it from fulfilling the request.
{% elif error_code == 'temporarily_unavailable' %}The authorization server is currently unable to handle the request due to a temporary overloading or maintenance.
{% else %}An error occurred during the authorization process. Please try again or contact the application provider.
{% endif %}If this problem persists, please contact support.
{% if error_uri %} {% endif %}