Django doesn't store the original password, that would be a huge security 
hole. It only has the hashed password available.

On Wednesday, September 18, 2013 10:10:02 AM UTC-5, Sivaram R wrote:
>
> I have views.py to show the form instance and update the instance.
>
> On edit the form data,all other field are showing the correct 
> value,password field is showing the entire hashed value from database and 
> not the entered password.
>
> Is any way to show the entered password instead of hashed value in 
> database.
>
> forms.py
>
> class UserRegisterForm(forms.ModelForm):
>     password = forms.CharField(widget=forms.PasswordInput(render_value=True))
>     class Meta:
>         model = User
>
> Thanks
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to