aboutsummaryrefslogtreecommitdiff
path: root/gn3/templates/oauth2/oauth2_error.html
blob: 4edf9c4fa0237a468cb383eeb20ff09060658b08 (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 content%}
{{flash_messages()}}

<h1>Error: {{error.status_code}}</h1>

There was an error trying to fulfill your request:

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