Fix setup password. Fixes #478 (#484)

This commit is contained in:
Dessalines 2021-11-16 09:46:22 -05:00 committed by GitHub
parent fac71d1749
commit 387f474b09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,6 +122,8 @@ export class Setup extends Component<any, State> {
onInput={linkEvent(this, this.handleRegisterPasswordChange)}
class="form-control"
required
autoComplete="new-password"
minLength={10}
maxLength={60}
/>
</div>
@ -138,6 +140,8 @@ export class Setup extends Component<any, State> {
onInput={linkEvent(this, this.handleRegisterPasswordVerifyChange)}
class="form-control"
required
autoComplete="new-password"
minLength={10}
maxLength={60}
/>
</div>