Forgot password flow

This commit is contained in:
2026-07-27 09:42:22 -03:00
parent 565bc769ed
commit 9dcedc9382
21 changed files with 1695 additions and 4 deletions

View File

@@ -24,6 +24,7 @@
[placeholder]="placeholder()"
[value]="type() !== 'file' ? value() : null"
(input)="type() !== 'file' ? onValueChange($event) : null"
(paste)="onPaste($event)"
(change)="type() === 'file' ? onFileChange($event) : null"
[attr.maxlength]="type() !== 'file' ? maxlength() : null"
[attr.accept]="type() === 'file' ? accept() : null"