mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #6143 from overleaf/jk-register-password-validation
[web] Password length validation on register GitOrigin-RevId: 8d97d92f3176f25c5af29479ba85789eac28540a
This commit is contained in:
parent
56d826f255
commit
000f849381
2 changed files with 2 additions and 4 deletions
|
@ -47,8 +47,7 @@ block content
|
|||
autocomplete="new-password",
|
||||
autofocus,
|
||||
required,
|
||||
minlength=settings.passwordStrengthOptions.length.min,
|
||||
maxlength=settings.passwordStrengthOptions.length.max
|
||||
minlength=settings.passwordStrengthOptions.length.min
|
||||
)
|
||||
input(
|
||||
type="hidden",
|
||||
|
|
|
@ -52,8 +52,7 @@ block content
|
|||
autocomplete="new-password",
|
||||
autofocus,
|
||||
required,
|
||||
minlength=settings.passwordStrengthOptions.length.min,
|
||||
maxlength=settings.passwordStrengthOptions.length.max
|
||||
minlength=settings.passwordStrengthOptions.length.min
|
||||
)
|
||||
.actions
|
||||
button.btn.btn-primary(
|
||||
|
|
Loading…
Reference in a new issue