diff --git a/example_project/provider_app/templates/oidc_provider/authorize.html b/example_project/provider_app/templates/oidc_provider/authorize.html index ccc7065..a00798a 100644 --- a/example_project/provider_app/templates/oidc_provider/authorize.html +++ b/example_project/provider_app/templates/oidc_provider/authorize.html @@ -2,29 +2,25 @@ {% block content %} -
-
-

Request for Permission

-
-
-

Client {{ client.name }} would like to access this information of you ...

+
+
+
+
+

Request for Permission

+

Client {{ client.name }} would like to access this information of you ...

+
+ {% csrf_token %} + {{ hidden_inputs }} +
+ {% for scope in params.scope %} +
{{ scope | capfirst }}
+ {% endfor %} +
+ +
+
+
+
+
-
- - {% csrf_token %} - - {{ hidden_inputs }} - -
    - {% for scope in params.scope %} -
  • {{ scope | capfirst }}
  • - {% endfor %} -
- - - -
-
-
- -{% endblock %} \ No newline at end of file +{% endblock %} \ No newline at end of file diff --git a/example_project/provider_app/templates/oidc_provider/error.html b/example_project/provider_app/templates/oidc_provider/error.html index b6e75dd..6c09ef9 100644 --- a/example_project/provider_app/templates/oidc_provider/error.html +++ b/example_project/provider_app/templates/oidc_provider/error.html @@ -2,13 +2,18 @@ {% block content %} -
-
-

{{ error }}

-
-
- {{ description }} -
-
+
+
+
+
+ +
+
{{ error }}
+

{{ description }}

+
+
+
+
+
{% endblock %} \ No newline at end of file