Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 7340ce1

Browse files
committed
Specified number of characters in password
1 parent 2946bb4 commit 7340ce1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp_frontend/src/components/pages/Registration.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default function Registration(): ReactElement {
128128
<img alt={"status icon password length"}
129129
src={passwordInformationLength ? check_svg : info_svg}/>
130130
<span className={"sr-only"}>{passwordInformationLength ? "Done: " : "Missing: "}</span>
131-
<span className={passwordInformationLength ? "text-success" : "text-muted"}>Passwords must be at least 8 characters.</span>
131+
<span className={passwordInformationLength ? "text-success" : "text-muted"}>Passwords must be between 8 and 20 characters.</span>
132132
</div>
133133
<div>
134134
<img alt={"status icon password contains uppercase character"}

0 commit comments

Comments
 (0)