Skip to content

Commit 0d4eeab

Browse files
committed
docs(arc-docs): review changes
review changes GH-26
1 parent 8571d8f commit 0d4eeab

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

projects/arc-docs/src/app/docs/auth-doc/components/configure-token-doc/configure-token-doc.component.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ <h2 class="nb-card-header-title">
99
<nb-card-body>
1010
<ul>
1111
<li>
12-
At this step, it's time to get a user token. Primarily, we need a
13-
code. With the help of this code, we call the getToken API, which
14-
returns a token after a successful OAuth 2.0 authentication. This
15-
token will allow us to communicate with the server and, for
16-
instance, display the username in the header of the application.
12+
At this step, we need to authenticate the user and get users JWT
13+
token. We follow OAuth 2.0 authentication mechanism. Here we first
14+
request for code and using that code we generate the required token.
15+
This token will be used for further requests as Authorization
16+
header.
1717
</li>
1818
<li>
1919
Let's assume that your backend returns a JWT token so that we can

projects/arc-docs/src/app/docs/auth-doc/components/ui-configure-doc/ui-configure-doc.component.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,17 @@ <h6 class="inner-wrapper">Usage</h6>
8484

8585
<nb-card>
8686
<nb-card-header fixed>
87-
<h4 class="nb-card-header-title">UI Settings</h4>
87+
<h4 class="nb-card-header-title">
88+
Configuration of UI Forms in AuthModule
89+
</h4>
8890
</nb-card-header>
8991
<nb-card-body>
9092
<p>
91-
Alongside with the strategies' configuration AuthModule also accepts a
92-
list of settings for UI side under the forms key:
93+
When configuring the AuthModule , you can provide a list of settings
94+
for the UI forms under the forms key. This allows you to customize the
95+
appearance and behavior of authentication-related forms such as login,
96+
registration, and password reset. Here's an example of how you might
97+
configure the AuthModule with UI settings:
9398
</p>
9499
<img
95100
height="400px"

0 commit comments

Comments
 (0)