feat: redesign password vault interface for pro users

- Complete UI/UX redesign of vault module
- Enhanced security interface
- Pro feature improvements
- Better password management workflow
This commit is contained in:
sepehr 2025-10-16 17:34:05 +03:00
parent cdc2e0cabf
commit 746711fa24
4 changed files with 632 additions and 335 deletions

View file

@ -435,6 +435,14 @@ export class VaultComponent implements OnInit {
copyToClipboard(text: string) {
navigator.clipboard.writeText(text).then(() => {
this.show_toast('Success', 'Password copied to clipboard', 'success');
}).catch(() => {
this.show_toast('Error', 'Failed to copy password', 'danger');
});
}
logger(item: any) {
console.dir(item);
}