Conventional commit for a new feature
Developers turn a plain description of their work into a clean Conventional Commits message with body.
Zobacz podgląd danych wejściowych i wyjściowych
Dane wejściowe
- Changes Description
- Added input validation to the user registration form. Now checks email format, password strength (min 8 chars, 1 uppercase, 1 number), and duplicate username. Shows inline error messages under each field.
- Convention
- conventional
- Commit Type
- feat
- Scope
- auth
Wynik (fragment)
feat(auth): add registration form input validation Validate email format, enforce password strength (min 8 chars, 1 uppercase, 1 number), and reject duplicate usernames. Display inline error messages beneath each field for clearer user feedback. - Add client-side validators for email, password, and username - Surface field-level error states in the registration form - Prevent submission until all fields pass validation