11 lines
284 B
Twig
11 lines
284 B
Twig
{% 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 %}
|