Changes between Version 1 and Version 2 of PasswordField
- Timestamp:
- Feb 25, 2013, 9:21:16 PM (12 years ago)
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.2 1 2 == Password Field == 3 3 4 For more visit: [http://devdoodles.wordpress.com/2009/02/16/user-authentication-with-django-registration/] 4 ---- 5 6 The "PasswordInput()" works but the given below syntax works fine in all views, 7 8 password = forms.CharField(max_length=32, widget=forms.PasswordInput) 9 10 ---- 11