diff --git a/src/css/style.css b/src/css/style.css index 9dd210c..2a0a410 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -193,4 +193,13 @@ pre { .centered { text-align: center; width: 100%; -} \ No newline at end of file +} + +.full-width { + width: 100%; +} + +.flow-submit-container { + margin-top: 25px; + padding: 0 10px; +} diff --git a/src/flow/code-1.html b/src/flow/code-1.html index a89a80a..bc5b1bf 100644 --- a/src/flow/code-1.html +++ b/src/flow/code-1.html @@ -4,7 +4,7 @@ - OAuth 2.0 Playground + OAuth 2.0 Playground - Authorization Code Flow (1/3) @@ -55,23 +55,24 @@
1. Build the Authorization URL
+

+ In order to initiate the Authorization Code Flow, we need to build the authorization URL + and redirect the user to the authorization server. The URL is constructed as follows: +

-
Let's break it down...
+

Let's break it down...

-