remove lowercase of placeholders in auth-form

This commit is contained in:
Alexander Mnich
2025-01-17 11:46:59 +00:00
parent e8c680bda7
commit 48ed4abc02

View File

@@ -154,7 +154,7 @@ export function UserAuthForm({
type="password" type="password"
autoComplete="current-password" autoComplete="current-password"
disabled={isLoading || isOauthLoading} disabled={isLoading || isOauthLoading}
className="ps-9 placeholder:lowercase" className="ps-9 placeholder"
/> />
{errors?.password && <p className="px-1 text-xs text-red-600">{errors.password}</p>} {errors?.password && <p className="px-1 text-xs text-red-600">{errors.password}</p>}
</div> </div>
@@ -172,7 +172,7 @@ export function UserAuthForm({
type="password" type="password"
autoComplete="current-password" autoComplete="current-password"
disabled={isLoading || isOauthLoading} disabled={isLoading || isOauthLoading}
className="ps-9 placeholder:lowercase" className="ps-9 placeholder"
/> />
{errors?.passwordConfirm && <p className="px-1 text-xs text-red-600">{errors.passwordConfirm}</p>} {errors?.passwordConfirm && <p className="px-1 text-xs text-red-600">{errors.passwordConfirm}</p>}
</div> </div>