-
Notifications
You must be signed in to change notification settings - Fork 4
Feat: Add Hide/show toggle feature for all password fields #1136
base: develop
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #1136 +/- ##
===========================================
+ Coverage 86.93% 87.30% +0.36%
===========================================
Files 85 85
Lines 4057 4057
Branches 237 237
===========================================
+ Hits 3527 3542 +15
+ Misses 458 445 -13
+ Partials 72 70 -2
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Kahanikaar please attach the mock/GIF of the feature in the PR description.
Screenshots of the feature added. Will this work? @Kajol-Kumari |
|
||
var input = $("#id_password"); | ||
input.attr('type') === 'password' ? input.attr('type','text') : input.attr('type','password') | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please leave a blank line here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes are made as per asked. Do check @Kajol-Kumari
@Kahanikaar please update your description of the PR, Put the gif/ screenshot or video showing how this feature is working, in the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
Please squash the commits so that It can be taken forward for merging.
c54b285
to
80e5b41
Compare
80e5b41
to
f0641ef
Compare
Squashed the commits and changed the commit message. Do review. @Kajol-Kumari @satya7289 |
Description
Password toggle feature added to view the entered password to verify whether correct or not.
Fixes #1077
Type of Change:
Code/Quality Assurance Only
Checklist:
Code/Quality Assurance Only
How has this been tested