Hello,
I’d like to hide the value of the password a customer either creates or uses to login to their account.
I’d like it to appear as “******” instead of the value itself.
A “Hide / Show Password” checkbox is also a good option for me.
Is it possible?
Thanks!
If you need help fixing that contact me with store url, and theme name.
What theme are you using that’s not obscuring the password value by default?
If your using a theme made by shopify themselves you should be able to contact support and use some of your plans free design time to have the password input fixed.
Otherwise you should just be able to use the following html in place of whatever other text inputs are being improperly used in the relevant customer login templates
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/password
Also see https://shopify.github.io/liquid-code-examples/example/customer-login
For Shopify’s Simple theme inspect the code of the template customers/login.liquid
This part
Should have type=“password” instead
Worked like a charm, thank you so much!