docs: remove autoplay form videos

This commit is contained in:
Livio Spring 2024-12-03 15:23:40 +01:00
parent ffe9570776
commit ee5c0d67a9
No known key found for this signature in database
GPG Key ID: 26BB1C2FA5952CF0
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ import { ResponsivePlayer } from "../../../../src/components/player";
<Intro provider="Google"/>
<ResponsivePlayer playing controls url='https://www.youtube.com/watch?v=wg-ee-EnHdE' />
<ResponsivePlayer controls url='https://www.youtube.com/watch?v=wg-ee-EnHdE' />
## Open the Google Identity Provider Template

View File

@ -7,7 +7,7 @@ import { ResponsivePlayer } from "../../../src/components/player";
In this quick start guide, we will be learning some fundamentals on how to set up ZITADEL for user management and application security. Thereafter, we will secure a React-based Single Page Application (SPA) using ZITADEL.
<ResponsivePlayer playing controls url='https://www.youtube.com/watch?v=5THbQljoPKg' />
<ResponsivePlayer controls url='https://www.youtube.com/watch?v=5THbQljoPKg' />
The sample application allows users to securely log in to ZITADEL using the OIDC Proof Key for Code Exchange (PKCE) flow. This flow ensures that the authentication process is secure by using a code verifier and a code challenge, which are sent to ZITADEL to obtain an access token. The access token is then used by the app to access the userinfo endpoint to retrieve and display information about the logged-in user. The app also has a logout feature that allows users to end their session and clear their access token. Overall, the app provides a simple and secure way for users to authenticate and access protected resources within ZITADEL.