Add a helper to the password (#8078)

Fix #7601

---------

Co-authored-by: Weiko <corentin@twenty.com>
This commit is contained in:
Sanskar Jain
2024-10-27 19:39:37 +05:30
committed by GitHub
parent 5d990594f3
commit 1296cea7e8

View File

@@ -27,6 +27,7 @@ import {
IconMicrosoft,
Loader,
MainButton,
StyledText,
} from 'twenty-ui';
import { isDefined } from '~/utils/isDefined';
@@ -267,6 +268,12 @@ export const SignInUpForm = () => {
disableHotkeys
onKeyDown={handleKeyDown}
/>
{signInUpMode === SignInUpMode.SignUp && (
<StyledText
text={'At least 8 characters long.'}
color={theme.font.color.secondary}
/>
)}
</StyledInputContainer>
)}
/>