Re: how to password will come in hidden form in django?

2013-02-14 Thread Jani Tiainen
Hi, You need to specify widget as PasswordInput on a form if you want to show asterisks. Though using 3rd party package is good option - no need to reinvent wheel. 15.2.2013 8:11, Avnesh Shakya kirjoitti: i have created my Userinfo model for registration, but password is showing means it's

Re: how to password will come in hidden form in django?

2013-02-14 Thread Sergiy Khohlov
Gave you checked django-auth befor start ? This module has all for you. You should not code code which is already coded :-) Many thanks, Serge +380 636150445 skype: skhohlov On Fri, Feb 15, 2013 at 8:11 AM, Avnesh Shakya wrote: > i have created my Userinfo model

how to password will come in hidden form in django?

2013-02-14 Thread Avnesh Shakya
i have created my Userinfo model for registration, but password is showing means it's not filling in hidden form so what will i have to do for it... please help me class Userinfo(models.Model): full_name=models.CharField(max_length=30) username=models.CharField(max_length=20)