Hi,
I am working on Signup action in users controller using Auth
component.
signup.ctp file includes username, password, password2(confirm
password).

<label for="UserUsername" class="usernamelabel"><span>Username</span></
label>
<?php e($form->text('username', array('class' => 'fullwidth'))); ?>
<label for="UserPassword" class="passwordlabel"><span>Password</span></
label>
<?php e($form->password('password', array('class' => 'fullwidth'))); ?
>
<label for="UserPasswordRepeat"
class="passwordrepeatlabel"><span>Confirm Password</span></label>
<?php e($form->password('password2', array('class' => 'fullwidth'))); ?
>

Using "passwordSimilar"  in user model, I am verifying username,
password and password2.
problem is that when either both password is not same or user did not
enter username then value of password is hash value in it's
corresponding text box.

How can I show actual password value in text box instead of hash
value ?
My mean to say..How can I rehashed password field value ?

Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to