Enhance security by implementing password strength validation rules to ensure users create strong passwords. The requirements are as follows: a minimum of 8 characters, at least 1 uppercase letter, and at least 1 numeric digit.
Acceptance Criteria:
Technical Notes:
- Use regexp from the standard Go library for pattern matching.
- Follow project conventions for error handling and localization of error messages, if applicable.
- Make the validation reusable for future password-related features.
Enhance security by implementing password strength validation rules to ensure users create strong passwords. The requirements are as follows: a minimum of 8 characters, at least 1 uppercase letter, and at least 1 numeric digit.
Acceptance Criteria:
Technical Notes: