hanyuu/templates/oauth2/error.twig

12 lines
284 B
Twig
Raw Normal View History

{% extends 'oauth2/master.twig' %}
{% set body_header_class = 'errorhead' %}
{% set body_header_text = 'Error' %}
{% set body_title = 'An error occurred' %}
{% block body_content %}
<div class="oauth2-errorbody">
<p>{{ error_description }}</p>
</div>
{% endblock %}