diff --git a/example_project/provider_app/static/css/custom.css b/example_project/provider_app/static/css/custom.css index 6a8e7de..e522417 100644 --- a/example_project/provider_app/static/css/custom.css +++ b/example_project/provider_app/static/css/custom.css @@ -8,7 +8,7 @@ body { font-family: 'Open Sans', sans-serif; font-weight: 400; height: auto; - padding-top: 100px; + padding-top: 10px; } .ui.huge.header { diff --git a/example_project/provider_app/templates/home.html b/example_project/provider_app/templates/home.html index dce039e..c06a358 100644 --- a/example_project/provider_app/templates/home.html +++ b/example_project/provider_app/templates/home.html @@ -7,6 +7,7 @@
+

Congratulations! It works.
... what's next?

@@ -15,6 +16,34 @@

Now that you are an OpenID Connect Provider, start by creating your clients here.

+

Also check that you've created at least one server key, do it here.

+

Server Endpoints

+
+
+ {% url 'oidc_provider:provider_info' %} +
This endpoint performs Authentication of the End-User. Read more.
+
+
+ {% url 'oidc_provider:jwks' %} +
JavaScript Object Notation (JSON) data structure that represents a cryptographic key.
+
+
+ {% url 'oidc_provider:authorize' %} +
This endpoint performs Authentication of the End-User. Read more.
+
+
+ {% url 'oidc_provider:token' %} +
Used to obtain an Access Token, an ID Token, and optionally a Refresh Token. Read more.
+
+
+ {% url 'oidc_provider:userinfo' %} +
OAuth 2.0 Protected Resource that returns Claims about the authenticated End-User. Read more.
+
+
+ {% url 'oidc_provider:logout' %} +
Used to notify the OP that the End-User has logged out of the site. Read more.
+
+