fix: added logic for password requirements on signup #230
Reference in New Issue
Block a user
Delete Branch "DeveshSingh/flotilla:fix/password-requirements"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Title
Feat: Show password length requirement on email signup (#224)
Description
The Problem
Previously, when users attempted to sign up via email/password, the 12-character minimum password requirement was a hidden rule. Users only discovered the requirement after submitting the form and triggering an error toast, which caused unnecessary friction during the onboarding flow.
The Solution
This PR improves the UX by explicitly surfacing the password requirement before submission.
SignUpEmail.svelteto utilize theinfo()snippet of theFieldInlinecomponent."Must be at least 12 characters long."directly underneath the password input field.Testing Performed
Closes #224