Class AuthenticationForm
Base class for authenticating users. Extend this to get a form that accepts username/password logins.
Declaration
class AuthenticationForm(forms.Form)
source linkDocumentation
Methods
▷ def __init__(self, request=None, *args, **kwargs) The 'request' parameter is set for custom auth use by subclasses. The form data comes in via the standard 'data' kwarg.
▶ def confirm_login_allowed(self, user) Controls whether the given User may log in. This is a policy setting, independent of end-user authentication. This default behavior is to allow login by active users, and reject login by inactive users.
If the given user cannot log in, this method should raise a
``ValidationError``.
If the given user may log in, this method should return None.
Overrides
This method is overriden in:
Subclasses
Reexports