aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates/oauth2/oauth2_error.html
diff options
context:
space:
mode:
Diffstat (limited to 'gn_auth/templates/oauth2/oauth2_error.html')
-rw-r--r--gn_auth/templates/oauth2/oauth2_error.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/gn_auth/templates/oauth2/oauth2_error.html b/gn_auth/templates/oauth2/oauth2_error.html
new file mode 100644
index 0000000..ec9a500
--- /dev/null
+++ b/gn_auth/templates/oauth2/oauth2_error.html
@@ -0,0 +1,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%}