mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
frontend: ui: bugfix: consistent password length. (#2394)
fronend: ui: bugfix: consistent password length. * The password set dialogue forces maxlenght=64 but when logging in, the dialogue does not forces this. This makes an issue when the user copy/pastes a longer than 64 character password in boxes. closes #2375
This commit is contained in:
@@ -24,6 +24,7 @@
|
|||||||
[type]="unmasked ? 'text' : 'password'"
|
[type]="unmasked ? 'text' : 'password'"
|
||||||
[(ngModel)]="password"
|
[(ngModel)]="password"
|
||||||
(ionChange)="error = ''"
|
(ionChange)="error = ''"
|
||||||
|
maxlength="64"
|
||||||
></ion-input>
|
></ion-input>
|
||||||
<ion-button fill="clear" color="light" (click)="toggleMask()">
|
<ion-button fill="clear" color="light" (click)="toggleMask()">
|
||||||
<ion-icon
|
<ion-icon
|
||||||
|
|||||||
Reference in New Issue
Block a user