Changes between Version 1 and Version 2 of PasswordField


Ignore:
Timestamp:
Feb 25, 2013, 9:21:16 PM (11 years ago)
Author:
onlyvinish
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PasswordField

    v1 v2  
    1 The built-in user authentication system in Django is great, but unfortunately it lacks support for sending activation emails to newly registered users.  Enter the django-registration application, which adds registration and account activation on top of Django standard views for user authentication.
    21
     2== Password Field ==
    33
    4 For more visit: [http://devdoodles.wordpress.com/2009/02/16/user-authentication-with-django-registration/]
     4----
     5
     6The "PasswordInput()" works but the given below syntax works fine in all views,
     7
     8password  = forms.CharField(max_length=32, widget=forms.PasswordInput)
     9
     10----
     11
Back to Top