diff --git a/frontend/src/app/feature/deposit/deposit.component.html b/frontend/src/app/feature/deposit/deposit.component.html index 79ac16d..78c7a07 100644 --- a/frontend/src/app/feature/deposit/deposit.component.html +++ b/frontend/src/app/feature/deposit/deposit.component.html @@ -1,20 +1,21 @@ -

Guthaben aufladen

+

Guthaben aufladen

{{ errorMsg }}
-
+
- - + + diff --git a/frontend/src/app/feature/deposit/deposit.component.ts b/frontend/src/app/feature/deposit/deposit.component.ts index 7cfd834..43fb94a 100644 --- a/frontend/src/app/feature/deposit/deposit.component.ts +++ b/frontend/src/app/feature/deposit/deposit.component.ts @@ -12,11 +12,12 @@ import { MatDialogRef, MatDialogTitle } from "@angular/material/dialog"; +import {MatButton} from "@angular/material/button"; @Component({ selector: 'app-deposit', standalone: true, - imports: [ReactiveFormsModule, NgIf, MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose], + imports: [ReactiveFormsModule, NgIf, MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose, MatButton], templateUrl: './deposit.component.html', changeDetection: ChangeDetectionStrategy.OnPush, })