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) email_address=models.CharField(max_length=75) password=models.CharField(max_length=255) reenter_password=models.CharField(max_length=255) area_of_interest=models.CharField(max_length=255) def _unicode_(self): return self.full_name -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.

