You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem Statement
The current signup page lacks password requirements such as a minimum length, inclusion of one uppercase letter, and one special character. This absence compromises the security of user accounts, as weak passwords can be easily exploited.
Proposed Solution
Implement password requirements on the signup page to enhance security. These requirements should include:
A minimum password length of 8 characters.
At least one uppercase letter.
At least one special character (e.g., @, #, !, etc.).
These rules will ensure stronger passwords and better protection for user accounts.
Alternatives Considered
Allowing users to set any password without restrictions, but this approach leaves the system vulnerable.
Using third-party authentication (OAuth) to avoid handling passwords directly.
Additional context
Adding these password constraints will significantly enhance user security and is a standard practice in modern applications. No additional changes to the UI are necessary, but form validation messages will need to reflect the new requirements.
assign this to @ananas304 with appropriate tags such as gssoc-exthacktoberfest-accepted
The text was updated successfully, but these errors were encountered:
Problem Statement
The current signup page lacks password requirements such as a minimum length, inclusion of one uppercase letter, and one special character. This absence compromises the security of user accounts, as weak passwords can be easily exploited.
Proposed Solution
Implement password requirements on the signup page to enhance security. These requirements should include:
These rules will ensure stronger passwords and better protection for user accounts.
Alternatives Considered
Additional context
Adding these password constraints will significantly enhance user security and is a standard practice in modern applications. No additional changes to the UI are necessary, but form validation messages will need to reflect the new requirements.
assign this to @ananas304 with appropriate tags such as
gssoc-ext
hacktoberfest-accepted
The text was updated successfully, but these errors were encountered: