mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 12:21:13 +00:00
Fix setup password. Fixes #478
This commit is contained in:
parent
07bf60252c
commit
39bbf4b5b3
1 changed files with 4 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue