-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
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
Enable longer/secure password on user account registration #1452
base: develop
Are you sure you want to change the base?
Enable longer/secure password on user account registration #1452
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any copy (labels, help text, etc) should be approved by @cbunicef first. Anything that needs to be translated should be identified and flagged as soon as possible.
iogt/static/css/accounts.css
Outdated
@@ -95,3 +95,8 @@ form input[type="checkbox"] { | |||
font-weight: 500; | |||
line-height: 14px; | |||
} | |||
|
|||
.fieldWrapper input[type=checkbox] { | |||
transform: translateY(3px); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems weird to me. Why use transform instead of, say, margin or padding?
@@ -32,10 +39,10 @@ class AccountSignupForm(SignupForm): | |||
def __init__(self, *args, **kwargs): | |||
super(AccountSignupForm, self).__init__(*args, **kwargs) | |||
self.fields.pop('email') | |||
self.fields["password1"] = IogtPasswordField(label=_("4-digit PIN"), autocomplete="new-password") | |||
self.fields["password1"] = IogtPasswordField(label=_("Enter a 4-digit PIN or a longer password"), autocomplete="new-password") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will have to be re-translated. I've asked whether this should be done now or as a separate issue.
7dfb781
to
7bf59a1
Compare
@cbunicef you can take the translations.csv from this to add translations |
Closes #1391
Closes #1392
Change Password