Skip to content

Commit 822d643

Browse files
authored
Merge pull request #676 from auth0-developer-hub/feature/update-auth0-by-okta
Update Auth0 by Okta
2 parents 1cf87c3 + 08b617a commit 822d643

File tree

8 files changed

+29
-12
lines changed

8 files changed

+29
-12
lines changed

img/website/auth0_logo_ft.svg

+17
Loading
File renamed without changes.

img/website/ebook.png

-71.3 KB
Loading

views/extension/index.pug

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ block content
3737
.colophon.clearfix
3838
.pull-left
3939
a(target="_blank" href="https://developer.auth0.com")
40-
| Supported by &nbsp
41-
img(src="/img/ico_logo.svg" alt='Supported by Auth0 - JWT.io Token Based Authentication')
40+
| Crafted by &nbsp
41+
img(src="/img/auth0_logo_ft.svg" alt='Crafted by Auth0 - JWT.io Token Based Authentication')
4242
a &nbsp-&nbsp
4343
a.keep-deco(href='https://github.com/jsonwebtoken/jsonwebtoken.github.io/blob/master/LICENSE.txt', target="_blank") License
4444

views/website/counter.pug

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.tokens-created
22
.container
3-
img(src='/img/pic_logo_ft.svg' alt='Auth0 logo').logo
3+
img(src='/img/auth0_logo_ft.svg' alt='Auth0 logo').logo
44
p JWT.io is brought to you by
55
a(href='https://auth0.com/signup/?utm_source=jwt.io&utm_medium=microsites&utm_campaign=devn_signup', target="_blank", rel="noreferrer noopener") Auth0
66
p Securely implement authentication with JWTs using Auth0 on any stack and any device in less than 10 minutes.

views/website/layout.pug

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ html(lang='en')
6262
| Your Privacy Choices
6363
img.ccpa-toggle(src='https://cdn.auth0.com/website/footer/ccpa.svg' alt='Privacy choices')
6464
a(href='https://developer.auth0.com', target="_blank")
65-
| Supported by
66-
img(src='/img/ico_logo.svg' alt='Supported by Auth0 - JWT.io Token Based Authentication').logo
65+
| Crafted by
66+
img(src='/img/auth0_logo_ft.svg' alt='Crafted by Auth0 - JWT.io Token Based Authentication').logo
6767
#ccpa-modal
6868
button#close-ccpa x
6969
h3 Your Privacy Choices
@@ -83,4 +83,4 @@ html(lang='en')
8383

8484
if process.env.NODE_ENV === "production"
8585
script(src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js", type="text/javascript", charset="UTF-8", data-domain-script=COOKIE_CONSENT_DOMAIN_ID, id="consent-script")
86-
script(src="/js/cookie-consent.js")
86+
script(src="/js/cookie-consent.js")

views/website/md/introduction.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The following shows a JWT that has the previous header and payload encoded, and
9090

9191
If you want to play with JWT and put these concepts into practice, you can use [jwt.io Debugger](https://jwt.io/#debugger-io) to decode, verify, and generate JWTs.
9292

93-
![JWT.io Debugger](https://cdn.auth0.com/blog/legacy-app-auth/legacy-app-auth-5.png)
93+
![JWT.io Debugger](https://cdn.auth0.com/website/jwt/introduction/debugger.png)
9494

9595
## How do JSON Web Tokens work?
9696
In authentication, when the user successfully logs in using their credentials, a JSON Web Token will be returned. Since tokens are credentials, great care must be taken to prevent security issues. In general, you should not keep tokens longer than required.
@@ -111,7 +111,7 @@ If the token is sent in the `Authorization` header, Cross-Origin Resource Sharin
111111

112112
The following diagram shows how a JWT is obtained and used to access APIs or resources:
113113

114-
![How does a JSON Web Token work](https://cdn2.auth0.com/docs/media/articles/api-auth/client-credentials-grant.png)
114+
![How does a JSON Web Token work](https://cdn.auth0.com/website/jwt/introduction/client-credentials-grant.png)
115115

116116
1. The application or client requests authorization to the authorization server. This is performed through one of the different authorization flows. For example, a typical [OpenID Connect](http://openid.net/connect/) compliant web application will go through the `/oauth/authorize` endpoint using the [authorization code flow](http://openid.net/specs/openid-connect-core-1_0.html#CodeFlowAuth).
117117
2. When the authorization is granted, the authorization server returns an access token to the application.
@@ -134,4 +134,4 @@ Regarding usage, JWT is used at Internet scale. This highlights the ease of clie
134134
![Comparing the length of an encoded JWT and an encoded SAML](https://cdn.auth0.com/content/jwt/comparing-jwt-vs-saml2.png)
135135
_Comparison of the length of an encoded JWT and an encoded SAML_
136136

137-
If you want to read more about JSON Web Tokens and even start using them to perform authentication in your own applications, browse to the [JSON Web Token landing page](http://auth0.com/learn/json-web-tokens) at Auth0.
137+
If you want to read more about JSON Web Tokens and even start using them to perform authentication in your own applications, browse to the [JSON Web Token landing page](http://auth0.com/learn/json-web-tokens) at Auth0 by Okta.

views/website/navigation.pug

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ nav.navbar.closed
1717
.social
1818
a.a0(href='https://developer.auth0.com', target='_blank')
1919
span.by-text Crafted by
20-
img(src='/img/pic_logo_ft.svg', alt='Crafted by Auth0 - JWT.io Token Based Authentication')
20+
img(src='/img/auth0_logo_header.svg', alt='Crafted by Auth0 - JWT.io Token Based Authentication')
2121
span.crafted-by__question-mark ?
2222

2323
a.supported(href='https://auth0.com', target="_blank")
24-
| Supported by
25-
img(src='/img/ico_logo.svg', alt='Supported by Auth0 - JWT.io Token Based Authentication').logo-mobile
24+
| Crafted by
25+
img(src='/img/auth0_logo_ft.svg', alt='Crafted by Auth0 - JWT.io Token Based Authentication').logo-mobile

0 commit comments

Comments
 (0)