Sending plain text passwords to customers - Problem

nickston846496

New Member
YetiShare User
Mar 29, 2017
6
0
1
Hello
Too many users have been complaining that the password is sent at a visible text causes risk. Is there a way to hide the password sending to the registers?
Thanks
 

sukhman21

Member
YetiShare User
YetiShare Supporter
Jan 26, 2015
508
3
18
the code is in the register.html file in your theme around line 170. You can change it to whatever you like.
 

nickston846496

New Member
YetiShare User
Mar 29, 2017
6
0
1
Thank you @Sukhman21 for your response. I actually do not know much about this field.
I have just made the following modification on public_html/themes/flow/templates/register.html:
$defaultContent .= "<strong>Username:</strong> [[[USERNAME]]]<br/>";
$defaultContent .= "<strong>Password:</strong> *************<br/><br/>";
However, the system still send the visible password instead of "************"
Would someone have a comment on this?
Thanks
 

sukhman21

Member
YetiShare User
YetiShare Supporter
Jan 26, 2015
508
3
18
Change this line 'PASSWORD' => $newpassword to 'PASSWORD' => '**********' and that should do it.