aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates/oauth2/oauth2_error.html
blob: ec9a5004c47f2a35b0d0e0c6cc82df32ca4402ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{%extends "base.html"%}

{%block title%}OAuth2 Error{%endblock%}

{%block pagetitle%}Error: {{error.status_code}}{%endblock%}

{%block content%}
{{flash_messages()}}

There was an error trying to fulfill your request:

<p>
  <strong>{{error.error}}</strong>:
  {{error.description}}
</p>
{%endblock%}