#14031 closed (invalid)
NewPasswordForm
| Reported by: | Owned by: | nobody | |
|---|---|---|---|
| Component: | Forms | Version: | 1.2 |
| Severity: | Keywords: | NewPasswordForm SetPasswordForm | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
I'd like to see a small change in the django.contrib.auth.forms
SetPasswordForm needs a user in order to use, PasswordChangeForm needs an old password.
I've editted one of those to create a NewPasswordForm wich you can use in combination with a registration form for instance.
Attachments (1)
Change History (3)
by , 15 years ago
comment:1 by , 15 years ago
| Resolution: | → invalid |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Auth doesn't seems to be the place to put the form that you have submit.
Actually the form is only providing a clean method that check the equality of two passwords and no other functionality.
It could be better if you put it in your own privates libraries.