We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plata uses email for login:
forms.py, line 67
if getattr(User, 'USERNAME_FIELD', 'username') == 'username': params['username'] = email[:30] # FIXME user = User.objects.create_user(**params)
the email address can be up to 100 characters, but the authentication form only allows for 30 characters because it references the username field:
def get_authentication_form(self, **kwargs): return AuthenticationForm(**kwargs)
There should be a AuthenticationForm by default which has a max_length of 100 characters if this way of authenticating is used.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Plata uses email for login:
forms.py, line 67
the email address can be up to 100 characters, but the authentication form only allows for 30 characters because it references the username field:
There should be a AuthenticationForm by default which has a max_length of 100 characters if this way of authenticating is used.
The text was updated successfully, but these errors were encountered: