Paws-frontend
Paws-frontend copied to clipboard
form issue #275
Description
form validations added and navbar labels
Related Issue
Issue #275
Screenshots / GIFs (if applicable)
added names in the navbar in home page
Checklist:
- [x] I have performed a self-review of my code
- [x] I have added/updated relevant documentation (if needed)
- [x] I have tested the changes locally and they function as expected
- [x] I have ensured my code follows the project's coding standards
Additional Notes
[Add any additional notes or context about the changes made]
@siddxharth1 how it shows if strenth is strong ? try to add all the states screenshots
@siddxharth1 what did you changed in navbar ?
@siddxharth1 how it shows if strenth is strong ? try to add all the states screenshots
i have added a function in util which takes the password string and returns a strength string a password is very strong if password.length >= 8 && hasUpperCase && hasLowerCase && hasNumber & hasNonAlphanumeric is strong if password.length >= 8 && hasUpperCase && hasLowerCase && hasNumber is medium if password.length >= 8 && ((hasUpperCase && hasLowerCase) or hasNonAlphanumeric) else it is weak Ex: Abcdfgh1@ : very strong Abcdfgh1: strong abcdfgh@ or Abcdfgh1 : medium else weak
and in the navbar i have added the label
as you can see there is no label here to which page it will redirect so i have added the label also
@siddxharth1 no need of this also discussed here #320 discard those changes also
- in your pr google auth code is not their check the diff tin the file chanaged section probabaly try to incoporate them
- in your code all the single quotes( ' ) is changed into double quotes( " ) fix this we prefer single
then it will be good to merge thank you !