change password
All checks were successful
Release / publish (push) Successful in 4m9s

This commit is contained in:
u80864958
2025-05-13 14:06:11 +02:00
parent 73ff28347a
commit 30dac9f12f
21 changed files with 288 additions and 16 deletions

View File

@ -0,0 +1,9 @@
<h1 class="text-2xl">Actions</h1>
<div class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-5 mt-5">
<app-button (click)="auth.logout()">logout</app-button>
<app-button (click)="changePW()">Change Password</app-button>
</div>
<app-modal [(open)]="changePWOpen">
<app-change-password (done)="changePWOpen = false" />
</app-modal>