feat: add user avatar

This commit is contained in:
jialin
2025-08-14 16:39:25 +08:00
parent d6dce4021d
commit 5bd5c7d2c5
12 changed files with 149 additions and 16 deletions
+3 -3
View File
@@ -192,7 +192,7 @@ const LoginForm = () => {
<ButtonText>
{intl.formatMessage(
{ id: 'common.external.login' },
{ type: 'OIDC' }
{ type: 'SSO' }
)}
</ButtonText>
</ButtonWrapper>
@@ -202,7 +202,7 @@ const LoginForm = () => {
<ButtonText>
{intl.formatMessage(
{ id: 'common.external.login' },
{ type: 'SAML' }
{ type: 'SSO' }
)}
</ButtonText>
</ButtonWrapper>
@@ -239,7 +239,7 @@ const LoginForm = () => {
<BackButton onClick={handleLoginWithThirdParty}>
{intl.formatMessage(
{ id: 'common.external.login' },
{ type: SSOAuth.options.oidc ? 'OIDC' : 'SAML' }
{ type: 'SSO' }
)}
</BackButton>
)}