Fix setup password. Fixes #478

This commit is contained in:
Dessalines 2021-11-15 13:21:06 -05:00
parent 07bf60252c
commit 39bbf4b5b3

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>