Skip to content

Commit f6bf37b

Browse files
committed
fixing login and signup images
1 parent 7370690 commit f6bf37b

File tree

7 files changed

+33
-4
lines changed

7 files changed

+33
-4
lines changed

auth4genai/img/login_dark.png

72.4 KB
Loading

auth4genai/img/login_light.png

70.2 KB
Loading

auth4genai/img/signup_dark.png

50.4 KB
Loading

auth4genai/img/signup_light.png

58 KB
Loading

auth4genai/intro/user-authentication.mdx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,17 @@ Choosing a login flow impacts security and user experience. Auth0 offers two way
9494
- **Use case:** Ideal for most AI agents requiring secure, frictionless user access.
9595

9696
<Frame>
97-
<img src="/img/universal_login.png" alt="Universal login screen" />
97+
<img
98+
className="block dark:hidden"
99+
src="/img/login_light.png"
100+
alt="Univeral Longin Screen"
101+
/>
102+
103+
<img
104+
className="hidden dark:block"
105+
src="/img/login_dark.png"
106+
alt="Univeral Longin Screen"
107+
/>
98108
</Frame>
99109

100110
2. [**Embedded Login**](https://auth0.com/docs/authenticate/login/embedded-login)**:** The login interface is integrated directly within your AI application's UI.

auth4genai/snippets/get-started/langchain-fastapi-py/user-authentication.mdx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,17 @@ Visit the URL `http://localhost:5173` in your browser.
7373
You will see:
7474

7575
<Frame>
76-
![Auth0 login
77-
screen](/img/user_authentication_quickstart_login_screen.png)
76+
<img
77+
className="block dark:hidden"
78+
src="/img/signup_light.png"
79+
alt="Auth0 login screen"
80+
/>
81+
82+
<img
83+
className="hidden dark:block"
84+
src="/img/signup_dark.png"
85+
alt="Auth0 login screen"
86+
/>
7887
</Frame>
7988

8089
Sign up to your application to create a new user account. You will then see a welcome message with your user name. You can sign in with that account on future visits.

auth4genai/snippets/get-started/vercel-ai-next-js/user-authentication.mdx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,17 @@ Visit your app in the browser, typically at `http://localhost:3000`.
146146
You will see:
147147

148148
<Frame>
149-
![Auth0 login screen](/img/user_authentication_quickstart_login_screen.png)
149+
<img
150+
className="block dark:hidden"
151+
src="/img/signup_light.png"
152+
alt="Auth0 login screen"
153+
/>
154+
155+
<img
156+
className="hidden dark:block"
157+
src="/img/signup_dark.png"
158+
alt="Auth0 login screen"
159+
/>
150160
</Frame>
151161

152162
Sign up to your application to create a new user account. You will then see a welcome message with your user name. You can sign in with that account on future visits.

0 commit comments

Comments
 (0)