I am working on admin features for my website, this is what I used for adding users http://www.jeasyui.com/tutorial/app/crud2.php
the thing is I've added a password field but it's shown as it's stored in database
<th field="password" width="50" editor="password">Password</th>
and I want it to be ** or any symbol because I only need this field to add users, not to see every user's password
how can I do that?
EDIT:
The password is hashed and salted not in plain text.